dolibarr-bff/DoliMiddlewareApi/Dtos/Dolibarr/ContactResponse.cs

21 lines
418 B
C#
Raw Normal View History

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; }
}