13 lines
287 B
C#
13 lines
287 B
C#
using StructureHelperCommon.Models.Materials;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace StructureHelperLogics.Models.Materials
|
|
{
|
|
public interface ISteelLibMaterial : ILibMaterial
|
|
{
|
|
double MaxPlasticStrainRatio { get; set; }
|
|
}
|
|
}
|