11 lines
283 B
C#
11 lines
283 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Novaloop.PaymoApi.ClientContacts.Models
|
|
{
|
|
public class GetClientContactsResponse
|
|
{
|
|
[JsonProperty("clientcontacts")]
|
|
public IEnumerable<PaymoClientContact> ClientContacts { get; set; }
|
|
}
|
|
} |