Files
StructureHelper/StructureHelperLogics/NdmCalculations/Materials/IPrimitiveMaterial.cs
2022-06-21 22:07:42 +05:00

15 lines
322 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace StructureHelperLogics.NdmCalculations.Materials
{
public interface IPrimitiveMaterial
{
string Id { get;}
MaterialTypes MaterialType { get; }
string ClassName { get; }
double Strength { get; }
}
}