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.

Applicant.cs 867B

12345678910111213141516171819202122
  1. namespace Diligent.WebAPI.Data.Entities
  2. {
  3. public class Applicant
  4. {
  5. public int ApplicantId { get; set; }
  6. public string FirstName { get; set; }
  7. public string LastName { get; set; }
  8. public string Position { get; set; }
  9. public DateTime DateOfApplication { get; set; }
  10. public string CV { get; set; }
  11. public string Email { get; set; }
  12. public string PhoneNumber { get; set; }
  13. public string LinkedlnLink { get; set; }
  14. public string GithubLink { get; set; }
  15. public string BitBucketLink { get; set; }
  16. public int Experience { get; set; }
  17. public string ApplicationChannel { get; set; }
  18. public List<TechnologyApplicant> TechnologyApplicants { get; set; }
  19. public List<Comment> Comments { get; set; }
  20. public List<Ad> Ads { get; set; }
  21. }
  22. }