using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models { public class SpotifyBrowseCategoriesResponse { public SpotifyBrowseCategories categories { get; set; } } public class SpotifyBrowseCategories { public string href { get; set; } public List items { get; set; } public int limit { get; set; } public object next { get; set; } public int offset { get; set; } public object previous { get; set; } public int total { get; set; } } public class SpotifyBrowseCategory { public string href { get; set; } public List icons { get; set; } public string id { get; set; } public string name { get; set; } } }