Files
StructureHelper/StructureHelperLogics/NdmCalculations/Analyses/IExportResultLogic.cs
2022-12-22 11:42:32 +05:00

14 lines
278 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Analyses
{
internal interface IExportResultLogic
{
void Export(INdmResult ndmResult);
}
}