using StructureHelperCommon.Infrastructures.Enums; using StructureHelperCommon.Infrastructures.Interfaces; namespace StructureHelperCommon.Models.Forces { /// /// Implements logic for calculating factor of load /// public interface IGetLoadFactor { double GetFactor(); } }