123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HiTeachCC.Model.PowerPoint
- {
- public class Shape : Item
- {
- public string ShapeType;
- public List<Paragraph> Paragraph { get; set; }
- public Fill Fill { get; set; }
- public Border Border { get; set; }
-
- public List<ShapeGuide> ShapeGuides { get; set; }
- public List<Path> Paths { get; set; }
- }
- public class ShapeGuide
- {
- public string Name { get; set; }
- public string Fmla { get; set; }
- }
- }
|