ChapterConfig.cs 403 B

123456789101112131415
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. public class ChapterConfig
  4. {
  5. //当前章节的编号
  6. public string configKey;
  7. //当前章节的名称
  8. public string chapter_name;
  9. public string sort_id;//章节在当前课程内的排序 从小到大的排序规则
  10. public string course_id;
  11. //显示的按钮的数组
  12. public bool[] btns;
  13. }