Files
Projet4/PyroFetes/DTO/Communication/Request/CreateCommunicationDto.cs
2025-10-16 17:34:58 +02:00

8 lines
208 B
C#

namespace PyroFetes.DTO.Communication.Request;
public class CreateCommunicationDto
{
public string? Calling { get; set; }
public string? Email { get; set; }
public string? Meeting { get; set; }
}