using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
///
/// Implement logic for stirrup bearing capacity which does not depend on specific inclined section
///
public interface IStirrupByDirectValue : IStirrup
{
///
/// Direct value of bearing capacity which is applied for any inclined section, N
///
double BearingCapacityValue { get; set; }
}
}