Slide.cs 619 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HTEXLib
  5. {
  6. public class Slide
  7. {
  8. public List<Item> item { get; set; }
  9. public Fill fill { get; set; }
  10. public int index { get; set; }
  11. //宽度
  12. public double width { get; set; }
  13. //高度
  14. public double height { get; set; }
  15. public ExamItem exercise { get; set; }
  16. //1 PPTX 2 HTML 来源
  17. public int source { get; set; }
  18. /// <summary>
  19. /// 1默认为普通页面,2为题目
  20. /// </summary>
  21. public int flag { get; set; }
  22. }
  23. }