2026-01-30 15:34:23 +00:00
|
|
|
namespace DoliMiddlewareApi.Dtos.query;
|
|
|
|
|
|
|
|
|
|
public class ClientDto
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public required string? Name { get; set; }
|
|
|
|
|
public required string? CodeClient { get; set; }
|
2026-02-05 13:25:13 +00:00
|
|
|
public string? TypentCode { get; set; }
|
|
|
|
|
public string? Status { get; set; }
|
|
|
|
|
public string? Email { get; set; }
|
|
|
|
|
public string? Phone { get; set; }
|
2026-01-30 15:34:23 +00:00
|
|
|
|
|
|
|
|
public List<ContactDto> Contacts { get; set; } = new();
|
|
|
|
|
}
|