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