Files
StructureHelper/StructureHelperCommon/Services/Exports/IExportResultLogic.cs
2025-10-29 22:07:41 +05:00

15 lines
286 B
C#

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