Files
StructureHelper/StructureHelperCommon/Models/Materials/Libraries/ILibMaterialEntity.cs
2023-02-12 23:38:24 +05:00

12 lines
272 B
C#

using StructureHelperCommon.Infrastructures.Enums;
namespace StructureHelperCommon.Models.Materials.Libraries
{
public interface ILibMaterialEntity
{
CodeTypes CodeType { get; }
string Name { get; }
double MainStrength { get; }
}
}