選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

SelectionProcess.cs 640B

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. }