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.

AdResponseDto.cs 808B

12345678910111213141516171819202122232425262728293031323334
  1. using Diligent.WebAPI.Contracts.DTOs.Technology;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Diligent.WebAPI.Contracts.DTOs.Ad
  8. {
  9. public class AdResponseDto
  10. {
  11. public int Id { get; set; }
  12. public string Title { get; set; }
  13. public int MinimumExperience { get; set; }
  14. public DateTime CreatedAt { get; set; }
  15. public DateTime ExpiredAt { get; set; }
  16. public string KeyResponsibilities { get; set; }
  17. public string Requirements { get; set; }
  18. public string Offer { get; set; }
  19. public List<TechnologyResponseDto> Technologies { get; set; }
  20. public string WorkHour { get; set; }
  21. public string EmploymentType { get; set; }
  22. }
  23. }