Files
douyin/extension/ServiceLifetimeAttribute.cs
2025-09-30 15:00:32 +08:00

18 lines
407 B
C#

namespace dy.net.extension
{
/// <summary>
/// 标记服务的生命周期
/// </summary>
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
public class ServiceLifetimeAttribute : Attribute
{
public ServiceLifetime Lifetime { get; }
public ServiceLifetimeAttribute(ServiceLifetime lifetime)
{
Lifetime = lifetime;
}
}
}