ProyectoGrupal/dolibarr-bff/DoliMiddlewareApi/Dtos/query/Setup/CountryDto.cs

11 lines
310 B
C#

namespace DoliMiddlewareApi.Dtos.query.Setup;
public class CountryDto
{
public string? Id { get; set; }
public string? Code { get; set; }
public string? Label { get; set; }
public string? CodeIso { get; set; }
public string? NumericCode { get; set; }
public bool Active { get; set; }
}