mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-23 17:02:36 +08:00
21 lines
477 B
C#
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;
|
|
}
|
|
}
|
|
}
|