1234567891011121314151617181920212223242526272829 |
- using System.ComponentModel;
- namespace GxPress.EnumConst
- {
- /// <summary>
- /// APP首页导航样式
- /// </summary>
- public enum AppPageStyleCssConst
- {
- [Description("大咖讲座")]
- Cathedra,
- [Description("会员特供")]
- VipSupply,
- [Description("每日好文")]
- DayGoodText,
- [Description("每日好书")]
- DayGoodBook,
- [Description("每日微课")]
- DayWeBook,
- [Description("信源听说")]
- ChatHearSpeak,
- [Description("每日一题")]
- DayProblem,
- [Description("名师")]
- StarTeacher,
- [Description("名校")]
- StarSchool
- }
- }
|