fixing some accessors
This commit is contained in:
@@ -7,7 +7,7 @@ namespace NOCQ
|
|||||||
public class DataImports
|
public class DataImports
|
||||||
{
|
{
|
||||||
[ImportMany(AllowRecomposition = true)]
|
[ImportMany(AllowRecomposition = true)]
|
||||||
public IEnumerable<System.Lazy<IDataImportHook,IDataImportMetadata>> DataHooks {get; set;}
|
IEnumerable<System.Lazy<IDataImportHook,IDataImportMetadata>> DataHooks {get; set;}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ namespace NOCQ
|
|||||||
|
|
||||||
public interface IDataImportHook
|
public interface IDataImportHook
|
||||||
{
|
{
|
||||||
string Name { get; set;}
|
string Name { get; }
|
||||||
void Run();
|
void Run();
|
||||||
void Stop();
|
void Stop();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ namespace NOCQ
|
|||||||
{
|
{
|
||||||
public string Name {get;set;}
|
public string Name {get;set;}
|
||||||
|
|
||||||
IDataImportAttr(string name)
|
public IDataImportAttr(string name)
|
||||||
:base(typeof(IDataImportHook))
|
:base(typeof(IDataImportHook))
|
||||||
{
|
{
|
||||||
Name = name;
|
Name = name;
|
||||||
|
|||||||
Reference in New Issue
Block a user