using System; using System.Linq; namespace Sony.Filtr.SpotifyAnalytics.Data { [PetaPoco.TableName("tblSpotifyAnalyticsDatePlaylistProcessed")] public class SpotifyAnalyticsPlaylistProcessedDate { public string CountryCode { get; set; } public DateTime Date { get; set; } public int DistributerId { get; set; } public DateTime? AggregatedTimestamp { get; set; } public DateTime? CategoryStreamsSummary { get; set; } } }