This repository has been archived on 2025-05-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novaloop.paymoapi/src/Clients/Models/ClientsResponse.cs

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; }
}
}