using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sony.Filtr.AppleMusic.Data.Streams { [PetaPoco.TableName("tblAppleMusicContainerStreamSummary")] public class AppleMusicContainerStreamSummary { public string ContainerId { get; set; } public string CountryCode { get; set; } public long Streams7Days { get; set; } public long Streams14Days { get; set; } public long Streams28Days { get; set; } public long Streams56Days { get; set; } public long StreamsLatest { get; set; } public int StreamDays7Days { get; set; } public int StreamDays14Days { get; set; } public int StreamDays28Days { get; set; } public int StreamDays56Days { get; set; } public DateTime LatestDate { get; set; } public DateTime? Updated { get; set; } } }