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 IDataExporter
|
|
|
|
|
{
|
|
|
|
|
string ExporterType { get; }
|
|
|
|
|
bool CanExport(string exporterType);
|
|
|
|
|
void Export(Layer layer);
|
|
|
|
|
}
|