Files
UnityExplorer_Fix/src/UI/Widgets/AutoComplete/Suggestion.cs
Sinai 7e0f98ef91 Automatic code cleanup (no real changes)
- Use explicit type of var
- Use 'new()'
- Remove unnecessary usings
- Sort usings
- Apply formatting
2022-04-12 05:20:35 +10:00

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;
}
}
}