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.

Ad.cs 522B

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