using System; using System.Linq; using PetaPoco; namespace Sony.Filtr.SpotifyAnalytics.Data { [TableName("tblSpotifyAnalyticsAccountPlaylistStreamInfo")] public class PlaylistStreamDataSummary { public int AccountId { get; set; } public string PlaylistUri { get; set; } public string Market { get; set; } public DateTime Date { get; set; } public int TotalStreams { get; set; } public int DeviceDesktopStreams { get; set; } public int DeviceTabletStreams { get; set; } public int DeviceMobileStreams { get; set; } public int OSAndroidStreams { get; set; } public int OSiOSStreams { get; set; } public int OSWindowsStreams { get; set; } public int OSMacOSStreams { get; set; } public int OSOtherStreams { get; set; } public int UniqueUsers { get; set; } } }