10 lines
227 B
C#
10 lines
227 B
C#
namespace StructureHelperCommon.Models.Shapes
|
|
{
|
|
public interface ILineShape : IShape
|
|
{
|
|
IPoint2D StartPoint { get; set; }
|
|
IPoint2D EndPoint { get; set; }
|
|
double Thickness { get; set; }
|
|
}
|
|
}
|