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.

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