AppPageStyleCssConst.cs 688 B

1234567891011121314151617181920212223242526272829
  1. using System.ComponentModel;
  2. namespace GxPress.EnumConst
  3. {
  4. /// <summary>
  5. /// APP首页导航样式
  6. /// </summary>
  7. public enum AppPageStyleCssConst
  8. {
  9. [Description("大咖讲座")]
  10. Cathedra,
  11. [Description("会员特供")]
  12. VipSupply,
  13. [Description("每日好文")]
  14. DayGoodText,
  15. [Description("每日好书")]
  16. DayGoodBook,
  17. [Description("每日微课")]
  18. DayWeBook,
  19. [Description("信源听说")]
  20. ChatHearSpeak,
  21. [Description("每日一题")]
  22. DayProblem,
  23. [Description("名师")]
  24. StarTeacher,
  25. [Description("名校")]
  26. StarSchool
  27. }
  28. }