Files
StructureHelper/StructureHelperCommon/Services/Exports/IImportFromFileLogic.cs
2025-11-02 14:07:06 +05:00

14 lines
281 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Services.Exports
{
public interface IImportFromFileLogic : IImportLogic
{
string? FileName { get; set; }
}
}