using System; using System.Linq; namespace Sony.Filtr.AppleMusic.Data.Internal { internal class TrackSummaryCurrentAndPreviousPosition { public string Storefront { get; set; } public DateTime? CurrentDate { get; set; } public int? CurrentPosition { get; set; } public DateTime? PreviousDate { get; set; } public int? PreviousPosition { get; set; } } }