PKHeX/PKHeX.Core/Game/ComboItem.cs

8 lines
240 B
C#
Raw Normal View History

2020-12-28 19:57:34 +00:00
namespace PKHeX.Core
2016-07-09 22:34:38 +00:00
{
/// <summary>
/// Key Value pair for a displayed <see cref="T:System.String" /> and underlying <see cref="T:System.Int32" /> value.
/// </summary>
2020-12-28 19:57:34 +00:00
public record ComboItem(string Text, int Value);
2016-07-09 22:34:38 +00:00
}