123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HTEXLib
- {
- public class Slide
- {
- public List<Item> item { get; set; }
- public Fill fill { get; set; }
- public int index { get; set; }
- //宽度
- public double width { get; set; }
- //高度
- public double height { get; set; }
- public ExamItem exercise { get; set; }
- //1 PPTX 2 HTML 来源
- public int source { get; set; }
- /// <summary>
- /// 1默认为普通页面,2为题目
- /// </summary>
- public int flag { get; set; }
- }
- }
|