using System; namespace StructureHelperCommon.Models.Shapes { /// public class LineShape : ILineShape { /// public Guid Id { get; } /// public IPoint2D StartPoint { get; set; } = new Point2D(); /// public IPoint2D EndPoint { get; set; } = new Point2D(); /// public double Thickness { get; set; } = 0d; public LineShape(Guid id) { Id = id; } public LineShape() : this (Guid.NewGuid()) { } } }