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

19 lines
713 B

using Shared.Enums;
namespace Server.Dto.Response;
public class ResponseAlumniDto
{
public string Id { get; set; }
public string Email { get; set; }
public ERole ERole { get; set; }
public string EntryYear { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string? LinkedinUrl { get; set; }
public string? GithubUrl { get; set; }
public string? PortfolioUrl { get; set; }
public string? ImageUrl { get; set; }
public IEnumerable<ResponseExperienceDto> Experiences { get; set; } = new List<ResponseExperienceDto>();
public IEnumerable<ResponseFormationDto> Formations { get; set; } = new List<ResponseFormationDto>();
}