WarpObj.cs 1.1 KB

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Xml;
  5. namespace HTEXLib
  6. {
  7. public class WarpObj
  8. {
  9. public XmlDocument zip { get; set; }
  10. public NodesTable slideLayoutTables { get; set; }
  11. public NodesTable slideMasterTables { get; set; }
  12. public XmlNode slideMasterTextStyles { get; set; }
  13. public Dictionary<string, Dictionary<string, string>> slideResObj { get; set; }
  14. public Dictionary<string, Dictionary<string, string>> layoutResObj { get; set; }
  15. public Dictionary<string, Dictionary<string, string>> masterResObj { get; set; }
  16. public XmlNode slideLayoutContent { get; set; }
  17. public XmlNode slideMasterContent { get; set; }
  18. public XmlNode themeContent { get; set; }
  19. public XmlNode tableStyles { get; set; }
  20. public Htex htex { get; set; }
  21. }
  22. }public class NodesTable {
  23. public Dictionary<string, XmlNode> idTable { get; set; }
  24. public Dictionary<string, XmlNode> idxTable { get; set; }
  25. public Dictionary<string, XmlNode> typeTable { get; set; }
  26. }