11 lines
347 B
C#
11 lines
347 B
C#
|
|
using DiunaBI.Core.Interfaces;
|
||
|
|
using DiunaBI.Core.Models;
|
||
|
|
|
||
|
|
namespace DiunaBI.Plugins.Morska.Exporters;
|
||
|
|
|
||
|
|
public abstract class MorskaBaseExporter : IDataExporter
|
||
|
|
{
|
||
|
|
public abstract string ExporterType { get; }
|
||
|
|
public virtual bool CanExport(string exporterType) => ExporterType == exporterType;
|
||
|
|
public abstract void Export(Layer layer);
|
||
|
|
}
|