PKHeX/PKHeX.Core/Game/ComboItem.cs
2020-12-28 11:57:34 -08:00

7 lines
240 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Key Value pair for a displayed <see cref="T:System.String" /> and underlying <see cref="T:System.Int32" /> value.
/// </summary>
public record ComboItem(string Text, int Value);
}