Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ApplicantUpdateDto.cs 616B

1234567891011121314151617
  1. namespace Diligent.WebAPI.Contracts.DTOs.Applicant
  2. {
  3. public class ApplicantUpdateDto
  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 string Email { get; set; }
  10. public string PhoneNumber { get; set; }
  11. public string LinkedlnLink { get; set; }
  12. public string GithubLink { get; set; }
  13. public string BitBucketLink { get; set; }
  14. public int Experience { get; set; }
  15. public string ApplicationChannel { get; set; }
  16. }
  17. }