namespace Server.Dto.Response; public class ResponseEventDto { public string Id { get; set; } public string? AlumniId { get; set; } public string Title { get; set; } public string? ImageUrl { get; set; } public string Description { get; set; } public DateTime Date { get; set; } public int nbMaxRegistrations { get; set; } public int nbRegistrations { get; set; } }