using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.Models.BeamShears { /// /// Implement logic for calculation of bearing capacity of stirrups by value of their density /// public interface IStirrupByDensity : IStirrup, IHasStartEndCoordinate { /// /// Direct density of stirrups, N/m /// double StirrupDensity { get; set; } } }