18 lines
601 B
C#
18 lines
601 B
C#
|
|
namespace DoliMiddlewareApi.Dtos.query;
|
||
|
|
|
||
|
|
public class ContactDetailDto
|
||
|
|
{
|
||
|
|
public int Id { get; set; }
|
||
|
|
public string? Lastname { get; set; }
|
||
|
|
public string? Firstname { get; set; }
|
||
|
|
public string? Email { set; get; }
|
||
|
|
public string? PhonePro { get; set; }
|
||
|
|
public string? PhonePerso { get; set; }
|
||
|
|
public string? PhoneMobile { get; set; }
|
||
|
|
public int ClientId { get; set; }
|
||
|
|
public string? Address { get; set; }
|
||
|
|
public string? Town { get; set; }
|
||
|
|
public string? Zip { get; set; }
|
||
|
|
public string? CivilityCode { get; set; }
|
||
|
|
public string? Status { get; set; }
|
||
|
|
}
|