using System.Collections.Generic; using Newtonsoft.Json; namespace Novaloop.PaymoApi.Clients.Models { public class ClientsResponse { [JsonProperty("clients")] public IEnumerable Clients { get; set; } } }