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