using System; using System.Linq; namespace Sony.Filtr.AppleMusic.Data.Internal { internal class TrackSummaryLatestAndEntryPosition { public string Storefront { get; set; } public DateTime LatestDate { get; set; } public int LatestPosition { get; set; } public DateTime EarliestDate { get; set; } public int EarliestPosition { get; set; } } }