using System; using System.Linq; using PetaPoco; namespace Sony.Filtr.Tasks.Tasks.Spotify { [TableName("tblSpotifyArtistMonthlyListenerLog")] public class SpotifyArtistMonthlyListenerLogEntry { public string ArtistId { get; set; } public DateTime Date { get; set; } public long MonthlyListeners { get; set; } public long MonthlyListenersDelta { get; set; } } }