Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Attributes/InjectServiceAttribute.cs

11 lines
285 B
C#

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