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.
| 123456789101112131415161718192021 |
- namespace Diligent.WebAPI.Contracts.DTOs.Applicant
- {
- public class ApplicantImportDto
- {
- public string FirstName { get; set; }
- public string LastName { get; set; }
- public string Position { get; set; }
- public string CV { get; set; }
- public DateTime DateOfApplication { get; set; }
- public string Email { get; set; }
- public string PhoneNumber { get; set; }
- public string LinkedlnLink { get; set; }
- public string GithubLink { get; set; }
- public string BitBucketLink { get; set; }
- public int Experience { get; set; }
- public string ApplicationChannel { get; set; }
- public string TypeOfEmployment { get; set; }
- public string Comment { get; set; }
- public Diligent.WebAPI.Data.Entities.Ad Ad { get; set; }
- }
- }
|