2026-01-30 15:34:23 +00:00
|
|
|
namespace DoliMiddlewareApi.Dtos.Dolibarr;
|
|
|
|
|
|
|
|
|
|
public class ClientResponse
|
|
|
|
|
{
|
|
|
|
|
public string? id { get; set; }
|
|
|
|
|
|
|
|
|
|
// Nombre comercial / razón social
|
|
|
|
|
public string? name { get; set; }
|
|
|
|
|
|
|
|
|
|
// Código cliente (CUxxxx)
|
|
|
|
|
public string? code_client { get; set; }
|
|
|
|
|
|
|
|
|
|
// Contacto
|
|
|
|
|
public string? email { get; set; }
|
|
|
|
|
public string? phone { get; set; }
|
2026-02-03 16:19:53 +00:00
|
|
|
|
2026-01-30 15:34:23 +00:00
|
|
|
}
|