using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models.Apple { public class AppleAlbumAttributes { public AppleAlbumArtwork artwork { get; set; } public string artistName { get; set; } public bool isSingle { get; set; } public string url { get; set; } public bool isComplete { get; set; } public List genreNames { get; set; } public int trackCount { get; set; } public bool isMasteredForItunes { get; set; } public string releaseDate { get; set; } public string name { get; set; } public string recordLabel { get; set; } public string copyright { get; set; } public AppleAlbumPlayParams playParams { get; set; } } }