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

14 lines
347 B
C#

using StructureHelperCommon.Infrastructures.Enums;
namespace StructureHelperCommon.Models.States
{
/// <inheritdoc/>
public class StateCalcTermPair : IStateCalcTermPair
{
/// <inheritdoc/>
public LimitStates LimitState { get; set; }
/// <inheritdoc/>
public CalcTerms CalcTerm { get; set; }
}
}