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