namespace LY.App.Extensions.DI
{
/// <summary>
/// Injection type
/// </summary>
public enum InjectionType
/// Transient
Transient,
/// Scoped
Scoped,
/// Singleton
Singleton
}