Files
Projet4/PyroFetes/DTO/Communication/Response/GetCommunicationDto.cs
T
2026-06-09 13:29:58 +02:00

16 lines
484 B
C#

namespace PyroFetes.DTO.Communication.Response;
public class GetCommunicationDto
{
public int Id { get; set; }
public string? Calling { get; set; }
public string? Email { get; set; }
public string? Meeting { get; set; }
public int ContactId { get; set; }
public string? ContactFirstName { get; set; }
public string? ContactLastName { get; set; }
public string? ContactEmail { get; set; }
public string? ContactPhoneNumber { get; set; }
}