21 lines
418 B
C#
21 lines
418 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; }
|
||
|
|
}
|