mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
7 lines
240 B
C#
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);
|
|
}
|