using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Diligent.WebAPI.Contracts.DTOs.Ad { public class AdCreateDto { 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; } } }