Files
StructureHelper/StructureHelperCommon/Models/Shapes/Logics/IConvertPointLogicEntity.cs
2023-12-09 22:05:02 +05:00

20 lines
476 B
C#

using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//Copyright (c) 2023 Redikultsev Evgeny, Ekaterinburg, Russia
//All rights reserved.
namespace StructureHelperCommon.Models.Shapes
{
public interface IConvertPointLogicEntity : ISaveable
{
string Name { get; set; }
IConvert2DPointTo3DPointLogic ConvertLogic { get;}
}
}