NceeUtil.cs 349 B

12345678910111213
  1. namespace YBEE.EQM.Application;
  2. public static class NceeUtil
  3. {
  4. /// <summary>
  5. /// 选择方向科目列表
  6. /// </summary>
  7. public static List<CourseMiniOutput> DirectionCourses { get; } = new()
  8. {
  9. new(){ Id = 4, Name = "物理", ShortName = "物" },
  10. new(){ Id = 8, Name = "历史", ShortName = "史" },
  11. };
  12. }