mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-10 22:00:16 -05:00
8 lines
240 B
C#
8 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);
|
|
}
|