Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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