namespace Diligent.WebAPI.Data.Entities { public class Ad { 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 MainLiabilities { get; set; } public string Conditions { get; set; } public string Offer { get; set; } public List Technologies { get; set; } = new(); } }