14 lines
338 B
C#
14 lines
338 B
C#
using StructureHelperCommon.Infrastructures.Enums;
|
|
|
|
namespace StructureHelperLogics.Models.Materials
|
|
{
|
|
public interface IPrimitiveMaterial
|
|
{
|
|
string Id { get;}
|
|
MaterialTypes MaterialType { get; }
|
|
CodeTypes CodeType { get; set; }
|
|
string ClassName { get; }
|
|
double Strength { get; }
|
|
}
|
|
}
|