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