Add steel Material

This commit is contained in:
Evgeny Redikultsev
2025-12-14 17:40:53 +05:00
parent 01cc3947bc
commit 68b15682bb
44 changed files with 1047 additions and 152 deletions

View File

@@ -0,0 +1,28 @@
using StructureHelperCommon.Infrastructures.Enums;
using StructureHelperCommon.Models.Codes;
using System;
using System.Collections.Generic;
using System.Text;
namespace StructureHelperCommon.Models.Materials.Libraries
{
public class SteelMaterialEntity : ISteelMaterialEntity
{
public Guid Id { get; }
public CodeTypes CodeType { get; set; }
public SteelDiagramPropertyType PropertyType { get; set; }
public ICodeEntity Code { get; set; }
public string Name { get; set; } = string.Empty;
public double InitialModulus { get; set; }
public double MainStrength { get; set; }
public SteelMaterialEntity(Guid id)
{
Id = id;
}
}
}