using StructureHelperLogics.Models.Materials; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.Models.BeamShears { /// /// Implement properties for uniformly distributed stirrups /// public interface IStirrupByRebar : IStirrup { /// /// Material of stirrups /// IReinforcementLibMaterial Material { get; set; } /// /// True if hoop is spiral one /// bool IsSpiral { get; set; } /// /// Count of legs of stirrup in specific cross-section /// double LegCount { get; set; } /// /// Diameter of stirrup, m /// double Diameter { get; set; } /// /// Step of uniformly distibuted stirrup along axis of beam, m /// double Spacing { get; set; } } }