123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HiTeachCC.Model.PowerPoint
- {
- public class Item
- {
- public string Type { get; set; }
- public Position Position { get; set; }
- public string Xml { get; set; }
- //public Picture Picture { get; set; }
- //public Shape Shape { get; set; }
- //public Math Math { get; set; }
- //public Table Table { get; set; }
- //public Chart Chart { get; set; }
- }
- }
|