using Gs.Toolbox.ApiCore.Abstract.Inject;
|
|
namespace Gs.Toolbox.ApiCore.Common.Inject;
|
|
public class InjectTypeContext
|
{
|
public InjectTypeContext()
|
{
|
types = new List<Type>();
|
types.Add(typeof(ITransient));
|
types.Add(typeof(ISingleton));
|
types.Add(typeof(IScope));
|
}
|
|
public List<Type> types { get; }
|
}
|