using System; using System.Linq; namespace Sony.Filtr.Core.SpotifyCharts.Data { [Serializable] public class AvailableChartOverview { public string Market { get; set; } public DateTime LatestDate { get; set; } public DateTime LatestTimestamp { get; set; } public SpotifyChartsListType ListType { get; set; } public SpotifyChartsTimeWindow TimeWindow { get; set; } } }