using System; using System.Collections.Generic; using System.Text; using System.Xml; namespace HTEXLib { public class WarpObj { public XmlDocument zip { get; set; } public NodesTable slideLayoutTables { get; set; } public NodesTable slideMasterTables { get; set; } public XmlNode slideMasterTextStyles { get; set; } public Dictionary> slideResObj { get; set; } public Dictionary> layoutResObj { get; set; } public Dictionary> masterResObj { get; set; } public XmlNode slideLayoutContent { get; set; } public XmlNode slideMasterContent { get; set; } public XmlNode themeContent { get; set; } public XmlNode tableStyles { get; set; } public Htex htex { get; set; } } }public class NodesTable { public Dictionary idTable { get; set; } public Dictionary idxTable { get; set; } public Dictionary typeTable { get; set; } }