16 lines
466 B
C#
16 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.Models.BeamShears
|
|
{
|
|
public class BeamShearCalculatorResult : IBeamShearCalculatorResult
|
|
{
|
|
public bool IsValid { get; set; } = true;
|
|
public string? Description { get; set; } = string.Empty;
|
|
public List<IBeamShearSectionCalculatorResult> SectionResults { get; set; } = new();
|
|
}
|
|
}
|