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 UniqueUsers { get; set; } } }