using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models.Apple { public class AppleCuratorResponse { public List data { get; set; } } public class AppleCuratorData { public string href { get; set; } public long? id { get; set; } public string type { get; set; } } public class AppleCuratorResponseData { public AppleCuratorAttributes attributes { get; set; } public string href { get; set; } public string id { get; set; } public AppleCuratorRelationships relationships { get; set; } public string type { get; set; } } public class AppleCuratorAttributes { public AppleCuratorArtwork artwork { get; set; } public AppleCuratorEditorialNotes editorialNotes { get; set; } public string name { get; set; } public string url { get; set; } } public class AppleCuratorEditorialNotes { public string @short { get; set; } public string standard { get; set; } } public class AppleCuratorArtwork { public string bgColor { get; set; } public int height { get; set; } public string textColor1 { get; set; } public string textColor2 { get; set; } public string textColor3 { get; set; } public string textColor4 { get; set; } public string url { get; set; } public int width { get; set; } } public class AppleCuratorRelationships { public ApplePlaylists playlists { get; set; } } public class ApplePlaylists { public List data { get; set; } public string href { get; set; } public string next { get; set; } } }