using System.Collections.Generic; namespace GFramework.SourceGenerators.Common.info; /// /// 表示泛型信息的数据结构 /// /// 泛型参数字符串 /// 泛型约束列表 public record struct GenericInfo( string Parameters, IReadOnlyList Constraints );