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