12 lines
270 B
C#
12 lines
270 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace StructureHelperCommon.Models.Materials.Libraries
|
|
{
|
|
internal interface ISteelMaterialLogicOption : IMaterialLogicOptions
|
|
{
|
|
double MaxPlasticStrainRatio { get; set; }
|
|
}
|
|
}
|