namespace Diligent.WebAPI.Data.Entities { public class Technology { public int TechnologyId { get; set; } public string Name { get; set; } public List ApplicantTechnologies { get; set; } public List Ads { get; set; } = new(); } }