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

21 lines
477 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using UnityEngine;
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;
}
}
}