16 lines
484 B
C#
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; }
|
|
} |