Files
DiunaBI/src/Backend/DiunaBI.Core/Interfaces/IDataExporter.cs

10 lines
202 B
C#
Raw Normal View History

2025-06-02 16:54:33 +02:00
using DiunaBI.Core.Models;
namespace DiunaBI.Core.Interfaces;
public interface IDataExporter
{
string ExporterType { get; }
bool CanExport(string exporterType);
void Export(Layer layer);
}