namespace GFramework.SourceGenerators.Abstractions.Architectures;
///
/// 声明架构模块需要自动注册的模型类型。
///
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = true)]
public sealed class RegisterModelAttribute(Type modelType) : Attribute
{
///
/// 获取要注册的模型类型。
///
public Type ModelType { get; } = modelType;
}