123456789101112131415161718192021222324252627282930 |
- using HTEXLib.Animations;
- using Newtonsoft.Json.Linq;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json;
- namespace HTEXLib
- {
- public class Slide
- {
- public List<IAnimation> animations { get; set; }
- 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; }
- public int netxPage { get; set; }
- public int prevPage { get; set; }
- }
- }
|