using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperCommon.Models.Forces { /// /// Implement properties of shear loads on beam /// public interface IBeamShearAxisAction : IAction { /// /// Shear force at support point, N /// double SupportShearForce { get; set; } /// /// Properties of combination of forces /// IFactoredCombinationProperty FactoredCombinationProperty { get; } /// /// Collection of loads which are applyed on beam at its span /// List ShearLoads {get;} } }