mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
13 lines
341 B
C#
13 lines
341 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GFramework.Core.SourceGenerators.Abstractions.Rule;
|
|
|
|
/// <summary>
|
|
/// 标记该类需要自动实现 IContextAware
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
|
|
public sealed class ContextAwareAttribute : Attribute
|
|
{
|
|
}
|