using System; using System.Collections.Generic; using System.Text; namespace HiTeachCC.Model.PowerPoint { public class Border { public double Width { get; set; } public string Color { get; set; } public string Type { get; set; } /// /// 描边 /// public string Stroke{ get; set; } } }