using System; using System.Linq; using PetaPoco; namespace Sony.Filtr.SpotifyAnalytics.Data { [TableName("tblSpotifyAnalyticsAccountPlaylistCategoryStreamSummary")] [Serializable] public class MarketPlaylistCategoryStreamSummary { public int AccountId { get; set; } public string Market { get; set; } public DateTime Date { get; set; } public int LocalListStreams { get; set; } public int TotalListStreams { get; set; } public int LocalListListeners { get; set; } public int TotalListListeners { get; set; } } }