12 lines
334 B
C#
12 lines
334 B
C#
using StructureHelperCommon.Infrastructures.Enums;
|
|
|
|
namespace StructureHelperCommon.Models.Materials.Libraries
|
|
{
|
|
public class ConcreteMaterialEntity : IConcreteMaterialEntity
|
|
{
|
|
public CodeTypes CodeType { get; set; }
|
|
public string Name { get; set; }
|
|
public double MainStrength { get; set; }
|
|
}
|
|
}
|