material edit windows were added

This commit is contained in:
Evgeny Redikultsev
2023-04-02 17:37:22 +05:00
parent 5b14ad6626
commit fe2adb49ff
24 changed files with 676 additions and 96 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelper.Infrastructure.Enums
{
internal enum MaterialType
{
Concrete,
Reinforcement,
Elastic
}
}