Shape.cs 562 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HiTeachCC.Model.PowerPoint
  5. {
  6. public class Shape : Item
  7. {
  8. public string ShapeType;
  9. public List<Paragraph> Paragraph { get; set; }
  10. public Fill Fill { get; set; }
  11. public Border Border { get; set; }
  12. public List<ShapeGuide> ShapeGuides { get; set; }
  13. public List<Path> Paths { get; set; }
  14. }
  15. public class ShapeGuide
  16. {
  17. public string Name { get; set; }
  18. public string Fmla { get; set; }
  19. }
  20. }