using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models { public class SearchArtistResponse { public SearchArtistCollection artists { get; set; } } public class SearchArtistCollection { 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; } } }