using StructureHelperLogics.Models.Materials; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.Models.BeamShears { /// /// Implements properies of stirrup by inclined rebar /// public interface IStirrupByInclinedRebar : IStirrup { /// /// Coordinate of start point of inclination, m /// double StartCoordinate { get; set; } /// /// Distance beetwen start/end point and point where rebar work is started /// double TransferLength { get; set; } /// /// Angle of inclination of rebar in degrees /// double AngleOfInclination { get; set; } /// /// Number of legs of inclinated rebar /// double LegCount { get; set; } /// /// Cross-section of rebar /// IRebarSection RebarSection { get; set; } } }