using StructureHelperCommon.Infrastructures.Enums; using StructureHelperCommon.Infrastructures.Interfaces; using StructureHelperCommon.Models.Codes; namespace StructureHelperCommon.Models.Materials.Libraries { public interface ILibMaterialEntity : ISaveable { CodeTypes CodeType { get; } ICodeEntity Code { get; set; } string Name { get; } /// /// Initial Young's Modulus, Pa /// double InitModulus { get; set; } /// /// Strength of material, Pa /// double MainStrength { get; } } }