using StructureHelperCommon.Infrastructures.Interfaces; using StructureHelperCommon.Models.Shapes; using StructureHelperLogics.Models.Materials; namespace StructureHelperLogics.Models.BeamShears { /// /// Properties of RC cross-section for shear strength of beam /// public interface IBeamShearSection : ISaveable, ICloneable { string? Name { get; set; } /// /// Concrete of cross-section /// IConcreteLibMaterial Material { get; set; } /// /// Shape of cross-section /// IShape Shape { get; } /// /// Distance from edge of tension zone to center of the nearest reinforcement bar /// double CenterCover { get; set; } } }