19 lines
614 B
C#
19 lines
614 B
C#
|
|
namespace DoliMiddlewareApi.Dtos.Dolibarr;
|
||
|
|
|
||
|
|
public class ContactResponse
|
||
|
|
{
|
||
|
|
public string? id { get; set; }
|
||
|
|
public string? lastname { get; set; }
|
||
|
|
public string? firstname { get; set; }
|
||
|
|
public string? email { get; set; }
|
||
|
|
public string? phone_pro { get; set; }
|
||
|
|
public string? phone_perso { get; set; }
|
||
|
|
public string? phone_mobile { get; set; }
|
||
|
|
public string? fk_soc { get; set; }
|
||
|
|
public string? address { get; set; }
|
||
|
|
public string? zip { get; set; }
|
||
|
|
public string? town { get; set; }
|
||
|
|
public string? civility_code { get; set; }
|
||
|
|
public string? statut { get; set; }
|
||
|
|
}
|