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.

123456789101112131415161718
  1. namespace Diligent.WebAPI.Data.Entities
  2. {
  3. public class SelectionProcess
  4. {
  5. public int Id { get; set; }
  6. public string Name { get; set; }
  7. public string Status { get; set; }
  8. public DateTime? Date { get; set; }
  9. public string? Link { get; set; }
  10. public int? SchedulerId { get; set; }
  11. public User? Scheduler { get; set; }
  12. public int SelectionLevelId { get; set; }
  13. public SelectionLevel? SelectionLevel { get; set; }
  14. public int ApplicantId { get; set; }
  15. public Applicant? Applicant { get; set; }
  16. public string? Comment { get; set; }
  17. }
  18. }