| 12345678910111213141516171819202122232425262728293031323334 |
- using Diligent.WebAPI.Contracts.DTOs.Technology;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Diligent.WebAPI.Contracts.DTOs.Ad
- {
- public class AdResponseDto
- {
- public int Id { get; set; }
-
- public string Title { get; set; }
-
- public int MinimumExperience { get; set; }
-
- public DateTime CreatedAt { get; set; }
-
- public DateTime ExpiredAt { get; set; }
-
- public string KeyResponsibilities { get; set; }
-
- public string Requirements { get; set; }
-
- public string Offer { get; set; }
-
- public List<TechnologyResponseDto> Technologies { get; set; }
-
- public string WorkHour { get; set; }
-
- public string EmploymentType { get; set; }
- }
- }
|