Impliment IOneVaribleFunction to delegate

This commit is contained in:
Иван Ивашкин
2025-02-15 19:20:52 +05:00
parent e0acca2e36
commit 68a1e62c18
6 changed files with 24 additions and 20 deletions

View File

@@ -1,4 +1,6 @@
using System;
using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models.Materials.Libraries;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -8,6 +10,10 @@ namespace StructureHelperLogics.Models.Materials
{
internal interface IFunctionMaterial : IHelperMaterial
{
double Modulus { get; set; }
double CompressiveStrength { get; set; }
double TensileStrength { get; set; }
List<IMaterialSafetyFactor> SafetyFactors { get; }
public IOneVariableFunction Function { get; set; }
}
}