Html.cs 344 B

123456789101112131415161718192021
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace HTEXLib.PPTX.Models
  6. {
  7. public class Html : Item
  8. {
  9. public Html()
  10. {
  11. type = "Html";
  12. }
  13. public string question { get; set; }
  14. public List<CodeValue> option { get; set; } = new List<CodeValue> { };
  15. }
  16. }