CSharp.Template/YuanXuan.IM.Common/Attributes/InjectServiceAttribute.cs

11 lines
278 B
C#

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