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

9 lines
247 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; }
public int ContactId { get; set; }
}