選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

AdApplicantViewDto.cs 514B

123456789101112131415
  1. using Diligent.WebAPI.Contracts.DTOs.Technology;
  2. namespace Diligent.WebAPI.Contracts.DTOs.Applicant
  3. {
  4. public class AdApplicantViewDto
  5. {
  6. public int ApplicantId { get; set; }
  7. public string FirstName { get; set; }
  8. public string LastName { get; set; }
  9. public DateTime DateOfApplication { get; set; }
  10. public string CV { get; set; }
  11. public int Experience { get; set; }
  12. public List<TechnologyViewDto> TechnologyApplicants { get; set; } = new();
  13. }
  14. }