CompressedProperty was added

This commit is contained in:
Evgeny Redikultsev
2023-01-16 21:42:18 +05:00
parent 062be10d96
commit 6d1f9bae1b
18 changed files with 276 additions and 209 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Sections
{
public interface ICompressedMember : ICloneable
{
bool Buckling { get; set; }
double GeometryLength { get; set; }
double LengthFactorX { get; set; }
double DiagramFactorX { get; set; }
double LengthFactorY { get; set; }
double DiagramFactorY { get; set; }
}
}