Change force tuple calculator result
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using LoaderCalculator.Data.ResultData;
|
||||
using StructureHelperCommon.Infrastructures.Enums;
|
||||
using StructureHelperCommon.Models.Forces;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperLogics.NdmCalculations.Analyses.ByForces
|
||||
{
|
||||
public class ForceTupleCalculatorResult : IForceTupleCalculatorResult
|
||||
{
|
||||
public bool IsValid { get; set; }
|
||||
public IForceTuple ForceTuple { get; set; } = new ForceTuple(Guid.NewGuid());
|
||||
/// <summary>
|
||||
/// Text of result of calculations
|
||||
/// </summary>
|
||||
public string Description { get; set; }
|
||||
/// <summary>
|
||||
/// Keep result of calculations from ndm-library
|
||||
/// </summary>
|
||||
public ILoaderResults LoaderResults { get; set; }
|
||||
|
||||
public IForceTupleInputData InputData { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user