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 Technologies { get; set; } public string WorkHour { get; set; } public string EmploymentType { get; set; } } }