// Copyright (c) 2025-2026 GeWuYou
// SPDX-License-Identifier: Apache-2.0
namespace GFramework.SourceGenerators.Common.Info;
///
/// 表示泛型信息的数据结构
///
/// 泛型参数字符串
/// 泛型约束列表
public record struct GenericInfo(
string Parameters,
IReadOnlyList Constraints
);