123456789101112131415161718192021 |
-
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HTEXLib.PPTX.Models
- {
- public class Html : Item
- {
- public Html()
- {
- type = "Html";
- }
- public string question { get; set; }
- public List<CodeValue> option { get; set; } = new List<CodeValue> { };
- }
- }
|