11 lines
240 B
C#
11 lines
240 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Novaloop.PaymoApi.Clients.Models
|
|
{
|
|
public class ClientsResponse
|
|
{
|
|
[JsonProperty("clients")]
|
|
public IEnumerable<Client> Clients { get; set; }
|
|
}
|
|
} |