using System.Collections.Generic; using System.Linq; namespace Sony.Filtr.AppleMusic.Models { public class StorefrontAttributes { public string defaultLanguageTag { get; set; } public string name { get; set; } public List supportedLanguageTags { get; set; } } public class StorefrontData { public StorefrontAttributes attributes { get; set; } public string href { get; set; } public string id { get; set; } public string type { get; set; } } public class AllStorefrontsResponse { public List data { get; set; } } }