22 lines
785 B
C#
22 lines
785 B
C#
|
|
namespace DoliMiddlewareApi.Dtos.query;
|
||
|
|
|
||
|
|
public class ClientDetailDto
|
||
|
|
{
|
||
|
|
public int Id { get; set; }
|
||
|
|
public required string Name { get; set; }
|
||
|
|
public string? CodeClient { get; set; }
|
||
|
|
public string? TypentCode { get; set; }
|
||
|
|
public string? Role { get; set; }
|
||
|
|
public string? Status { get; set; }
|
||
|
|
public string? Email { get; set; }
|
||
|
|
public string? Phone { get; set; }
|
||
|
|
public string? Address { get; set; }
|
||
|
|
public string? Town { get; set; }
|
||
|
|
public string? Zip { get; set; }
|
||
|
|
public string? CountryCode { get; set; }
|
||
|
|
public string? VatNumber { get; set; }
|
||
|
|
public string? Url { get; set; }
|
||
|
|
public string? NotePublic { get; set; }
|
||
|
|
public string? NotePrivate { get; set; }
|
||
|
|
public List<ContactDto> Contacts { get; set; } = new();
|
||
|
|
}
|