Files
Projet4/PyroFetes/DTO/Communication/Response/GetCommunicationDto.cs
2025-10-16 17:05:52 +02:00

9 lines
238 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; }
}