using System; using System.Collections.Generic; using System.Linq; namespace Sony.Filtr.AppleMusic.Data { [Serializable] public class AppleMusicFullSong { 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 Artists { get; set; } public long AlbumId { get; set; } public int Duration { get; set; } } }