using System; using System.Linq; namespace Sony.Filtr.Core.SpotifyCharts.Data.Internal { internal class TrackSummaryCurrentAndPreviousPosition { public string Market { get; set; } public SpotifyChartsListType ListType { get; set; } public SpotifyChartsTimeWindow TimeWindow { get; set; } public DateTime? CurrentDate { get; set; } public int? CurrentPosition { get; set; } public DateTime? PreviousDate { get; set; } public int? PreviousPosition { get; set; } } }