mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 19:03:29 +08:00
11 lines
271 B
C#
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
|
|
{
|
|
} |