Item.cs 717 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HTEXLib
  5. {
  6. public abstract class Item
  7. {
  8. // Sp CxnSp Media Group Table Chart
  9. public string type { get; set; }
  10. public Position position { get; set; }
  11. // public string Xml { get; set; }
  12. public int index { get; set; }
  13. public Svg svg { get; set; }
  14. public string uid { get; set; } = Guid.NewGuid().ToString("N");
  15. public Brush brush { get; set; }
  16. //public Picture Picture { get; set; }
  17. //public Shape Shape { get; set; }
  18. //public Math Math { get; set; }
  19. //public Table Table { get; set; }
  20. //public Chart Chart { get; set; }
  21. }
  22. }