Fix beam shear force calculator
This commit is contained in:
@@ -6,10 +6,16 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperLogics.Models.BeamShears
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
public class BeamShearCalculatorResult : IBeamShearCalculatorResult
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
public bool IsValid { get; set; } = true;
|
||||
/// <inheritdoc/>
|
||||
public string? Description { get; set; } = string.Empty;
|
||||
/// <inheritdoc/>
|
||||
public IBeamShearCalculatorInputData InputData { get; set; }
|
||||
/// <inheritdoc/>
|
||||
public List<IBeamShearActionResult> ActionResults { get; set; } = new();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user