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