IInjectionArray.cs
11 lines
| 228 B
| text/x-csharp
|
CSharpLexer
cin
|
r275 | using System.Collections.Generic; | |
namespace Implab.ServiceHost.Unity | |||
{ | |||
public interface IArrayInjectionParameter { | |||
string TypeName { get; } | |||
IEnumerable<IInjectionParameter> Items { get; } | |||
} | |||
} |