1234567891011121314151617181920 |
- 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; }
- public List<PPTXElement> Elements { get; set; }
- }
- }
|