Files
DiunaBI/DiunaBI.Infrastructure/Interfaces/IDataImporter.cs

11 lines
229 B
C#
Raw Normal View History

2025-11-05 20:50:25 +01:00
using DiunaBI.Domain.Entities;
2025-06-02 16:54:33 +02:00
2025-11-05 20:50:25 +01:00
namespace DiunaBI.Infrastructure.Interfaces;
2025-06-02 16:54:33 +02:00
public interface IDataImporter
{
string ImporterType { get; }
bool CanImport(string importerType);
void Import(Layer importWorker);
}