using System; using System.Collections.Generic; using System.Text; namespace HTEXLib.Models.HTEX { public class ShapeStyle { /// /// 坐标信息 /// public Position position { get; set; } public Border border { get; set; } = new Border(); public Fill fill { get; set; } = new Fill() { type=-1}; } }