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/ResponseFormationDto.cs

12 lines
366 B

namespace Server.Dto.Response;
public class ResponseFormationDto
{
public string Id { get; set; }
public string? AlumniId { get; set; }
public string Name { get; set; }
public DateTime StartingDate { get; set; }
public DateTime? EndingDate { get; set; }
public string SchoolName { get; set; }
public bool CurrentFormation { get; set; }
}