|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace LearningOfficer.OA.Common.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class InjectAttribute : Attribute
|
|
{
|
|
public ServiceLifetime Lifetime { get; set; } = ServiceLifetime.Scoped;
|
|
}
|
|
}
|