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.

ApplicantImporteDto.cs 834B

123456789101112131415161718192021
  1. namespace Diligent.WebAPI.Contracts.DTOs.Applicant
  2. {
  3. public class ApplicantImportDto
  4. {
  5. public string FirstName { get; set; }
  6. public string LastName { get; set; }
  7. public string Position { get; set; }
  8. public string CV { get; set; }
  9. public DateTime DateOfApplication { get; set; }
  10. public string Email { get; set; }
  11. public string PhoneNumber { get; set; }
  12. public string LinkedlnLink { get; set; }
  13. public string GithubLink { get; set; }
  14. public string BitBucketLink { get; set; }
  15. public int Experience { get; set; }
  16. public string ApplicationChannel { get; set; }
  17. public string TypeOfEmployment { get; set; }
  18. public string Comment { get; set; }
  19. public Diligent.WebAPI.Data.Entities.Ad Ad { get; set; }
  20. }
  21. }