using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models.Apple { public class AppleAllStorefrontsResponse { public List data { get; set; } } public class AppleStorefrontData { public AppleStorefrontAttributes attributes { get; set; } public string href { get; set; } public string id { get; set; } public string type { get; set; } } public class AppleStorefrontAttributes { public string defaultLanguageTag { get; set; } public string name { get; set; } public List supportedLanguageTags { get; set; } } }