- using System.Collections;
- using System.Collections.Generic;
- public class ChapterConfig
- {
- //当前章节的编号
- public string configKey;
- //当前章节的名称
- public string chapter_name;
- public string sort_id;//章节在当前课程内的排序 从小到大的排序规则
- public string course_id;
- //显示的按钮的数组
- public bool[] btns;
- }
|