1234567891011121314151617181920212223242526272829303132 |
- namespace Attribute
- {
-
-
-
-
-
-
-
- [AttributeUsage(AttributeTargets.Class, Inherited = false)]
- public class AppServiceAttribute : System.Attribute
- {
-
-
-
-
- public LifeTime ServiceLifetime { get; set; } = LifeTime.Scoped;
-
-
-
- public Type ServiceType { get; set; }
-
-
-
- public bool InterfaceServiceType { get; set; }
- }
- public enum LifeTime
- {
- Transient, Scoped, Singleton
- }
- }
|