10 lines
202 B
C#
10 lines
202 B
C#
|
|
using DiunaBI.Core.Models;
|
||
|
|
|
||
|
|
namespace DiunaBI.Core.Interfaces;
|
||
|
|
|
||
|
|
public interface IDataExporter
|
||
|
|
{
|
||
|
|
string ExporterType { get; }
|
||
|
|
bool CanExport(string exporterType);
|
||
|
|
void Export(Layer layer);
|
||
|
|
}
|