GwWuYou 60a42a5f1e refactor(rule): 更新命名空间为 abstractions
- 将 ContextAwareAttribute 的命名空间从 Attributes.rule 更新为 Abstractions.rule
2025-12-27 23:32:44 +08:00

11 lines
271 B
C#

using System;
namespace GFramework.SourceGenerators.Abstractions.rule;
/// <summary>
/// 标记该类需要自动实现 IContextAware
/// </summary>
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
public sealed class ContextAwareAttribute : Attribute
{
}