using System; using System.Collections.Generic; using System.Text; using System.Xml.Serialization; namespace TEAMModelOS.SDK.Module.PowerPointX.Model { public class PPTXSlide { public PPTXSlide() { Elements = new List(); } //public int Width { get; set; } //public int Height { get; set; } [XmlElement(typeof(PPTXChart))] [XmlElement(typeof(PPTXConnector))] [XmlElement(typeof(PPTXContainer))] [XmlElement(typeof(PPTXPicture))] [XmlElement(typeof(PPTXPosition))] [XmlElement(typeof(PPTXTable))] public List Elements { get; set; } } }