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 { /// /// Internal force at support point /// IFactoredForceTuple SupportForce { get; set; } /// /// Collection of loads which are applyed on beam at its span /// List ShearLoads {get;} } }