11 lines
220 B
C#
11 lines
220 B
C#
|
|
using DiunaBI.Core.Models;
|
||
|
|
|
||
|
|
namespace DiunaBI.Core.Interfaces;
|
||
|
|
|
||
|
|
public interface IDataProcessor
|
||
|
|
{
|
||
|
|
string ProcessorType { get; }
|
||
|
|
|
||
|
|
bool CanProcess(string processorType);
|
||
|
|
void Process(Layer processWorker);
|
||
|
|
}
|