mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 17:21:16 +08:00
13 lines
359 B
C#
13 lines
359 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GFramework.Core.SourceGenerators.Abstractions.Rule;
|
|
|
|
/// <summary>
|
|
/// 标记字段需要自动注入模型集合。
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Field, Inherited = false, AllowMultiple = false)]
|
|
public sealed class GetModelsAttribute : Attribute
|
|
{
|
|
}
|