You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314
  1. namespace Diligent.WebAPI.Data.Entities
  2. {
  3. public enum TechnologyTypes { Backend, Frontend, Other };
  4. public class Technology
  5. {
  6. public int TechnologyId { get; set; }
  7. public string Name { get; set; }
  8. public TechnologyTypes TechnologyType { get; set; }
  9. public List<TechnologyApplicant> TechnologyApplicants { get; set; } = new();
  10. public List<Ad> Ads { get; set; } = new();
  11. }
  12. }