mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-01 11:12:49 +08:00
22 lines
503 B
C#
22 lines
503 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using UnityEngine;
|
|
using UnityExplorer.Core;
|
|
|
|
namespace UnityExplorer.UI.Widgets.AutoComplete
|
|
{
|
|
public struct Suggestion
|
|
{
|
|
public readonly string DisplayText;
|
|
public readonly string UnderlyingValue;
|
|
|
|
public Suggestion(string displayText, string underlyingValue)
|
|
{
|
|
DisplayText = displayText;
|
|
UnderlyingValue = underlyingValue;
|
|
}
|
|
}
|
|
}
|