您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728293031323334
  1. 
  2. namespace Diligent.WebAPI.Data.Entities
  3. {
  4. public enum WorkHours { PartTime, FullTime };
  5. public enum EmploymentTypes { Intership, Work };
  6. public class Ad
  7. {
  8. public int Id { get; set; }
  9. public string Title { get; set; }
  10. public int MinimumExperience { get; set; }
  11. public DateTime CreatedAt { get; set; }
  12. public DateTime ExpiredAt { get; set; }
  13. public string KeyResponsibilities { get; set; }
  14. public string Requirements { get; set; }
  15. public string Offer { get; set; }
  16. public List<Technology> Technologies { get; set; } = new();
  17. public List<Applicant> Applicants { get; set; } = new();
  18. public WorkHours WorkHour { get; set; }
  19. public EmploymentTypes EmploymentType { get; set; }
  20. }
  21. }