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