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.

AdUpdateDto.cs 545B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Diligent.WebAPI.Contracts.DTOs.Ad
  7. {
  8. public class AdUpdateDto
  9. {
  10. public string Title { get; set; }
  11. public int MinimumExperience { get; set; }
  12. public DateTime CreatedAt { get; set; }
  13. public DateTime ExpiredAt { get; set; }
  14. public string MainLiabilities { get; set; }
  15. public string Conditions { get; set; }
  16. public string Offer { get; set; }
  17. }
  18. }