Files
StructureHelper/StructureHelperCommon/Models/Sections/Logics/IRcEccentricityAxisLogic.cs
2024-03-10 19:20:01 +05:00

8 lines
215 B
C#

namespace StructureHelperCommon.Models.Sections.Logics
{
public interface IRcEccentricityAxisLogic : IProcessorLogic<double>
{
double Length { get; set; }
double Size { get; set; }
}
}