PKHeX/PKHeX.Core/Game/ComboItem.cs

7 lines
229 B
C#
Raw Normal View History

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 sealed record ComboItem(string Text, int Value);