using System; namespace Sony.Filtr.AppleMusic.Data { [Serializable] public class AppleMusicPlaylist { public string Id { get; set; } public string Name { get; set; } public string Artwork { get; set; } public string PlaylistType { get; set; } public long? CuratorId { get; set; } public string CuratorType { get; set; } public bool Removed { get; set; } public DateTime? LatestUpdate { get; set; } public DateTime? AppleMusicUpdate { get; set; } } }