using StructureHelperCommon.Infrastructures.Interfaces; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.Models.BeamShears { /// /// Implements properties for calculting maximum range for considering of inclined sections /// public interface IBeamShearDesignRangeProperty : ISaveable, ICloneable { /// /// Absolute value of range in metres /// double AbsoluteRangeValue { get; set; } /// /// Relative value of range as factor of effective depth of cross-section /// double RelativeEffectiveDepthRangeValue { get; set; } /// /// Number of step of solvation /// int StepCount { get; set; } } }