Files
StructureHelper/StructureHelperCommon/Models/Shapes/IPoint2DRange.cs
2025-11-09 17:34:51 +05:00

16 lines
379 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, ICloneable
{
IPoint2D StartPoint { get; set; }
IPoint2D EndPoint { get; set; }
}
}