using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sony.Filtr.AppleMusic.Data.Internal { public class AppleMusicPlaylistTrack { public DateTime Date { get; set; } public string PlaylistId { get; set; } public int Position { get; set; } public long SongId { get; set; } public string StoreFront { get; set; } public int? PreviousPosition { get; set; } public DateTime? LatestPositionChange { get; set; } public DateTime? Added { get; set; } } }