| 12345678910111213141516171819202122232425262728293031323334 |
-
- namespace Diligent.WebAPI.Data.Entities
- {
- public enum WorkHours { PartTime, FullTime };
-
- public enum EmploymentTypes { Intership, Work };
-
- public class Ad
- {
- public int Id { get; set; }
-
- public string Title { get; set; }
-
- public int MinimumExperience { get; set; }
-
- public DateTime CreatedAt { get; set; }
-
- public DateTime ExpiredAt { get; set; }
-
- public string KeyResponsibilities { get; set; }
-
- public string Requirements { get; set; }
-
- public string Offer { get; set; }
-
- public List<Technology> Technologies { get; set; } = new();
-
- public List<Applicant> Applicants { get; set; } = new();
-
- public WorkHours WorkHour { get; set; }
-
- public EmploymentTypes EmploymentType { get; set; }
- }
- }
|