Files
UnityExplorer_Fix/src/UI/Widgets/AutoComplete/Suggestion.cs

15 lines
365 B
C#
Raw Normal View History

namespace UnityExplorer.UI.Widgets.AutoComplete
2021-04-23 21:50:58 +10:00
{
public struct Suggestion
{
public readonly string DisplayText;
public readonly string UnderlyingValue;
2021-04-23 21:50:58 +10:00
public Suggestion(string displayText, string underlyingValue)
2021-04-23 21:50:58 +10:00
{
DisplayText = displayText;
UnderlyingValue = underlyingValue;
2021-04-23 21:50:58 +10:00
}
}
}