using System; using System.Linq; namespace Sony.Filtr.Core.SpotifyCharts.Data.Internal { internal class TrackSummaryLatestAndEntryPosition { public string Market { get; set; } public SpotifyChartsListType ListType { get; set; } public SpotifyChartsTimeWindow TimeWindow { get; set; } public DateTime LatestDate { get; set; } public int LatestPosition { get; set; } public DateTime EarliestDate { get; set; } public int EarliestPosition { get; set; } } }