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