You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OptifitWebService/Server/Dto/Response/ResponseEventDto.cs

13 lines
398 B

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; }
}