Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526
  1. namespace Diligent.WebAPI.Data.Entities
  2. {
  3. public class Ad
  4. {
  5. public int Id { get; set; }
  6. public string Title { get; set; }
  7. public int MinimumExperience { get; set; }
  8. public DateTime CreatedAt { get; set; }
  9. public DateTime ExpiredAt { get; set; }
  10. public string KeyResponsibilities { get; set; }
  11. public string Requirements { get; set; }
  12. public string Offer { get; set; }
  13. public List<Technology> Technologies { get; set; } = new();
  14. public List<Applicant> Applicants { get; set; } = new();
  15. }
  16. }