namespace Service.IconSearch; /// /// 图标候选对象 /// public record IconCandidate { /// /// 图标集名称 /// public string CollectionName { get; init; } = string.Empty; /// /// 图标名称 /// public string IconName { get; init; } = string.Empty; /// /// 图标标识符(格式:{collectionName}:{iconName}) /// public string IconIdentifier => $"{CollectionName}:{IconName}"; }