using System; namespace Sony.Filtr.Core.SpotifyCharts.Data.Internal { internal class TrackSummaryPeakPosition { public string Market { get; set; } public SpotifyChartsListType ListType { get; set; } public SpotifyChartsTimeWindow TimeWindow { get; set; } public int PeakPosition { get; set; } public DateTime LatestPeakDate { get; set; } public DateTime EarliestPeakDate { get; set; } } }