using LoaderCalculator.Data.ResultData;
using System;
using System.Collections.Generic;
using System.Text;
namespace StructureHelperLogics.Models.Calculations.CalculationsResults
{
///
/// Represent result of calculation of ndm analisys
///
public interface ICalculationResult
{
///
/// True if result of calculation is valid
///
bool IsValid { get; }
///
/// Text of result of calculations
///
string Desctription { get; }
///
/// Keep result of calculations from ndm-library
///
ILoaderResults LoaderResults { get; }
}
}