using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperCommon.Models.Shapes { /// public class LineShape : ILineShape { /// public ICenter StartPoint { get; set; } /// public ICenter EndPoint { get; set; } /// public double Thickness { get; set; } public LineShape() { StartPoint = new Center(); EndPoint = new Center(); Thickness = 0; } } }