using System; using System.Linq; namespace Sony.Filtr.AppleMusic.Data { [Serializable] public class AvailableSongChartOverview { public string Storefront { get; set; } public DateTime LatestDate { get; set; } public DateTime LatestTimestamp { get; set; } public DateTime? PreviousDate { get; set; } public DateTime? PreviousTimestamp { get; set; } } }