pschelpdesk/FastBill/Api/Response/Contact.cs
2024-11-19 20:16:45 +01:00

9 lines
220 B
C#

using System.Text.Json.Serialization;
namespace FastBill.Api.Response;
public class Contact
{
[JsonPropertyName("CONTACTS")]
public List<Models.Contact> Contacts { get; set; } = new List<Models.Contact>();
}