您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }