| 123456789101112131415161718192021222324 |
-
- 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 MainLiabilities { get; set; }
-
- public string Conditions { get; set; }
-
- public string Offer { get; set; }
-
- public List<Technology> Technologies { get; set; } = new();
- }
- }
|