fixing some accessors
This commit is contained in:
@@ -7,7 +7,7 @@ namespace NOCQ
|
||||
public class DataImports
|
||||
{
|
||||
[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
|
||||
{
|
||||
string Name { get; set;}
|
||||
string Name { get; }
|
||||
void Run();
|
||||
void Stop();
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace NOCQ
|
||||
{
|
||||
public string Name {get;set;}
|
||||
|
||||
IDataImportAttr(string name)
|
||||
public IDataImportAttr(string name)
|
||||
:base(typeof(IDataImportHook))
|
||||
{
|
||||
Name = name;
|
||||
|
||||
Reference in New Issue
Block a user