using System; using System.Linq; namespace Sony.Filtr.AppleMusic.Data.Internal { public class AppleMusicMarketPlaylistCategoryStreamSummary { public DateTime Date { get; set; } public string Storefront { get; set; } public int? BuzzCategoryId { get; set; } public long TotalStreams { get; set; } public long LocalStreams { get; set; } public long LocalUniqueUsers { get; set; } public long TotalUniqueUsers { get; set; } } }