[Add] VContainer
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace VContainer.Diagnostics
|
||||
{
|
||||
public sealed class DiagnosticsInfo
|
||||
{
|
||||
public string ScopeName { get; }
|
||||
public RegisterInfo RegisterInfo { get; }
|
||||
public ResolveInfo ResolveInfo { get; set; }
|
||||
public List<DiagnosticsInfo> Dependencies { get; } = new List<DiagnosticsInfo>();
|
||||
|
||||
public DiagnosticsInfo(string scopeName, RegisterInfo registerInfo)
|
||||
{
|
||||
ScopeName = scopeName;
|
||||
RegisterInfo = registerInfo;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user