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