namespace DoliMiddlewareApi.Dtos.Dolibarr.Setup; public class CountryResponse { public string? id { get; set; } public string? code { get; set; } public string? label { get; set; } public string? code_iso { get; set; } public string? numeric_code { get; set; } public string? active { get; set; } public string? eec { get; set; } public string? favorite { get; set; } }