22 lines
678 B
C#
22 lines
678 B
C#
using StructureHelperCommon.Models;
|
|
using StructureHelperCommon.Models.Calculators;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Policy;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.Models.BeamShears
|
|
{
|
|
public interface IBeamShearSectionLogicResult : IResult
|
|
{
|
|
IBeamShearSectionLogicInputData InputData { get; set; }
|
|
public double ConcreteStrength { get; set; }
|
|
public double StirrupStrength { get; set; }
|
|
public double TotalStrength { get; set; }
|
|
public double FactorOfUsing { get; }
|
|
public IShiftTraceLogger TraceLogger { get; }
|
|
}
|
|
}
|