using DiunaBI.Core.Models; namespace DiunaBI.Core.Interfaces; public interface IDataExporter { string ExporterType { get; } bool CanExport(string exporterType); void Export(Layer layer); }