mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-01 19:13:03 +08:00

- Use explicit type of var - Use 'new()' - Remove unnecessary usings - Sort usings - Apply formatting
15 lines
365 B
C#
15 lines
365 B
C#
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;
|
|
}
|
|
}
|
|
}
|