Files
StructureHelper/StructureHelperCommon/Models/Shapes/ILineShape.cs
2022-11-27 17:04:34 +05:00

16 lines
344 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Shapes
{
public interface ILineShape : IShape
{
IPoint2D StartPoint { get; set; }
IPoint2D EndPoint { get; set; }
double Thickness { get; set; }
}
}