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.

12345678910111213141516171819
  1. namespace Diligent.WebAPI.Contracts.DTOs.Ad
  2. {
  3. public class AdCreateDto
  4. {
  5. public string Title { get; set; }
  6. public int MinimumExperience { get; set; }
  7. public DateTime CreatedAt { get; set; }
  8. public DateTime ExpiredAt { get; set; }
  9. public string MainLiabilities { get; set; }
  10. public string Conditions { get; set; }
  11. public string Offer { get; set; }
  12. }
  13. }