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.0KB

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