using StructureHelperCommon.Infrastructures.Enums; namespace StructureHelperCommon.Models.States { /// /// Implements pair of limit state and calculeation term /// public interface IStateCalcTermPair { LimitStates LimitState { get; set; } CalcTerms CalcTerm { get; set; } } }