Files
StructureHelper/StructureHelperCommon/Models/Shapes/IPoint2DRange.cs
2025-11-03 13:58:27 +05:00

16 lines
367 B
C#

using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Shapes
{
public interface IPoint2DRange : ISaveable
{
IPoint2D StartPoint { get; set; }
IPoint2D EndPoint { get; set; }
}
}