Files
StructureHelper/StructureHelperLogics/NdmCalculations/Analyses/IExportResultLogic.cs
2023-04-30 21:11:07 +05:00

15 lines
294 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Analyses
{
public interface IExportResultLogic
{
string FileName { get; set; }
void Export();
}
}