1234567891011121314151617181920212223242526 |
- 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<PPTXElement>();
- }
- //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<PPTXElement> Elements { get; set; }
- }
- }
|