using System; using System.Linq; using Sony.Filtr.SpotifyAnalytics.Models; namespace Sony.Filtr.SpotifyAnalytics.Data { [PetaPoco.TableName("tblSpotifyAnalyticsDate")] public class SpotifyAnalyticsAggregatedDate { public DateTime Date { get; set; } public int DistributerId { get; set; } public string CountryCode { get; set; } public SpotifyS3FileType FileType { get; set; } public int Version { get; set; } } }