after refactor cleanup
This commit is contained in:
11
DiunaBI.Plugins.Morska/Exporters/MorskaBaseExporter.cs
Normal file
11
DiunaBI.Plugins.Morska/Exporters/MorskaBaseExporter.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using DiunaBI.Domain.Entities;
|
||||
using DiunaBI.Infrastructure.Interfaces;
|
||||
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user