namespace Diligent.WebAPI.Data.Entities { public enum TechnologyTypes { Backend, Frontend, Other }; public class Technology { public int TechnologyId { get; set; } public string Name { get; set; } public TechnologyTypes TechnologyType { get; set; } public List TechnologyApplicants { get; set; } = new(); public List Ads { get; set; } = new(); } }