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 IPoint2D StartPoint { get; set; } /// public IPoint2D EndPoint { get; set; } /// public double Thickness { get; set; } public LineShape() { StartPoint = new Point2D(); EndPoint = new Point2D(); Thickness = 0; } } }