using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models.Apple { public class ApplePlaylistData { public ApplePlaylistAttributes attributes { get; set; } public string href { get; set; } public string id { get; set; } public AppleRelationships relationships { get; set; } public string type { get; set; } } public class ApplePlaylistResponse { public List data { get; set; } } }