using System; using System.Collections.Generic; namespace Sony.Filtr.AppleMusic.Data { public class AppleMusicSong { public long Id { get; set; } public string Storefront { get; set; } public string Name { get; set; } public string ArtistName { get; set; } public string ArtworkUrl { get; set; } public string ComposerName { get; set; } public string Isrc { get; set; } public int TrackNumber { get; set; } public int DiscNumber { get; set; } public long ArtistId { get; set; } public List ArtistIds { get; set; } public long AlbumId { get; set; } public int Duration { get; set; } public DateTime? ReleaseDate { get; set; } } }