using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperCommon.Models.Forces { /// /// Implement properties for shear beam load /// public interface IBeamShearLoad : IAction { /// /// Value of level where action is applyied at, 0.5 is top surface, -0.5 is bottom surface /// double RelativeLoadLevel { get; set; } /// /// Ratio of substraction load from total shear force /// double LoadRatio { get; set; } } }