12 lines
342 B
C#
12 lines
342 B
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperCommon.Models.Shapes;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Analyses.ValueDiagrams
|
|
{
|
|
public interface IValueDiagram : ISaveable, ICloneable
|
|
{
|
|
IPoint2DRange Point2DRange { get; set; }
|
|
public int StepNumber { get; set; }
|
|
}
|
|
}
|