14 lines
429 B
C#
14 lines
429 B
C#
|
|
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; }
|
||
|
|
}
|