12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HTEXLib
- {
- public abstract class Item
- {
- // Sp CxnSp Media Group Table Chart
- public string type { get; set; }
- public Position position { get; set; }
- // public string Xml { get; set; }
- public int index { get; set; }
- public Svg svg { get; set; }
- public string uid { get; set; } = Guid.NewGuid().ToString("N");
- public Brush brush { 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; }
- }
- }
|