| 1234567891011121314151617181920212223242526 |
-
- namespace Diligent.WebAPI.Data.Entities
- {
- 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();
- }
- }
|