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