123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using HTEXLib.Animations;
- using HTEXLib.Models;
- using Newtonsoft.Json.Linq;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json;
- namespace HTEXLib
- {
- public class Slide
- {
- public List<Animtime> animations { get; set; }
- public List<Item> item { get; set; }
- public Fill fill { get; set; }
- //宽度
- public double width { get; set; }
- //高度
- public double height { get; set; }
- /// <summary>
- /// exercise如果不为null 则说明当前页面包含 题目,则题目信息可以与 item 一起渲染在当前页面。
- /// </summary>
- public ExamItem exercise { get; set; }
- /// <summary>
- /// 1 以htex 方式渲染 2 HTML来源,以html方式渲染
- /// </summary>
- public int render { get; set; }
- /// <summary>
- /// #00FFFFFF
- /// </summary>
- public string colortag { get; set; }
- /// <summary>
- /// 直接以guidxxx_snapshot.jpg 存储在blob中
- /// </summary>
- // public string snapshot { get; set; }
- //public int index { get; set; }
- /// <summary>
- /// 1默认为普通页面,2为题目
- /// </summary>
- //public int flag { get; set; }
- //public int netxPage { get; set; }
- //public int prevPage { get; set; }
- }
- }
|