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.

ApplicantViewDto.cs 1.3KB

12345678910111213141516171819202122232425262728293031
  1. using Diligent.WebAPI.Contracts.DTOs.Ad;
  2. using Diligent.WebAPI.Contracts.DTOs.Comment;
  3. using Diligent.WebAPI.Contracts.DTOs.SelectionProcess;
  4. using Diligent.WebAPI.Contracts.DTOs.Technology;
  5. namespace Diligent.WebAPI.Contracts.DTOs.Applicant
  6. {
  7. public class ApplicantViewDto
  8. {
  9. public int ApplicantId { get; set; }
  10. public string FirstName { get; set; }
  11. public string LastName { get; set; }
  12. public string Position { get; set; }
  13. public DateTime DateOfApplication { get; set; }
  14. public string CV { get; set; }
  15. public string Email { get; set; }
  16. public string PhoneNumber { get; set; }
  17. public string LinkedlnLink { get; set; }
  18. public string GithubLink { get; set; }
  19. public string BitBucketLink { get; set; }
  20. public int Experience { get; set; }
  21. public string ApplicationChannel { get; set; }
  22. public string TypeOfEmployment { get; set; }
  23. public string Gender { get; set; }
  24. public string ProfessionalQualification { get; set; }
  25. public List<TechnologyViewDto> TechnologyApplicants { get; set; } = new();
  26. public List<CommentViewDto> Comments { get; set; }
  27. public List<AdResponseDto> Ads { get; set; }
  28. public List<SelectionProcessResposneWithoutApplicantDto> SelectionProcesses { get; set; }
  29. }
  30. }