8 lines
210 B
C#
8 lines
210 B
C#
namespace PyroFetes.DTO.Communication.Response;
|
|
|
|
public class GetCommunicationRequest
|
|
{
|
|
public string? Calling { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? Meeting { get; set; }
|
|
} |