23 lines
781 B
C#
23 lines
781 B
C#
using StructureHelperCommon.Infrastructures.Enums;
|
|
using StructureHelperCommon.Models.Materials.Libraries;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperCommon.Models.Materials
|
|
{
|
|
public class ConcreteLogicOptions : IMaterialLogicOptions
|
|
{
|
|
public List<IMaterialSafetyFactor> SafetyFactors { get; set; }
|
|
public LimitStates LimitState { get; set; }
|
|
public CalcTerms CalcTerm { get; set; }
|
|
public double Age { get; set; }
|
|
public ILibMaterialEntity MaterialEntity { get; set; }
|
|
public bool WorkInCompression { get; set; }
|
|
public bool WorkInTension { get; set; }
|
|
public double RelativeHumidity { get; set; }
|
|
}
|
|
}
|