15 lines
201 B
C#
15 lines
201 B
C#
using System.ComponentModel.Composition;
|
|
|
|
|
|
namespace NOCQ
|
|
{
|
|
[Export(typeof(IDataImportHook))]
|
|
public interface IDataImportHook
|
|
{
|
|
string Name { get; set; }
|
|
void Run();
|
|
void Stop();
|
|
}
|
|
}
|
|
|