using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Buckling
{
///
public class ConcreteBucklingResult : IConcreteBucklingResult
{
///
public bool IsValid { get; set; }
///
public string Desctription { get; set; }
///
public double EtaFactorAlongX { get; set; }
///
public double EtaFactorAlongY { get; set; }
}
}