Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

AdCreateDto.cs 705B

12345678910111213141516171819202122232425262728293031
  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 AdCreateDto
  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 KeyResponsibilities { get; set; }
  15. public string Requirements { get; set; }
  16. public string Offer { get; set; }
  17. public string WorkHour { get; set; }
  18. public string EmploymentType { get; set; }
  19. public List<int> TechnologiesIds { get; set; }
  20. }
  21. }