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

14 lines
429 B
C#
Raw Normal View History

namespace DoliMiddlewareApi.Dtos.query.Setup;
public class CompanyDto
{
public string? Name { get; set; }
public string? Address { get; set; }
public string? Town { get; set; }
public string? Zip { get; set; }
public string? Country { get; set; }
public string? Phone { get; set; }
public string? Email { get; set; }
public string? VatNumber { get; set; }
public string? Siren { get; set; }
}