using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models.Forces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
///
public class BeamShearCalculatorInputData : IBeamShearCalculatorInputData
{
///
public Guid Id { get; }
///
public List BeamShearActions { get; } = new();
///
public List ShearSections { get; } = new();
///
public List Stirrups { get; } = new();
public BeamShearCalculatorInputData(Guid id)
{
Id = id;
}
}
}