PKHeX/PKHeX.Core/Game/ComboItem.cs

12 lines
285 B
C#
Raw Normal View History

namespace PKHeX.Core
2016-07-09 22:34:38 +00:00
{
/// <summary>
/// Key Value pair for a displayed <see cref="string"/> and underlying <see cref="int"/> value.
/// </summary>
public struct ComboItem
2016-07-09 22:34:38 +00:00
{
public string Text { get; set; }
public int Value { get; set; }
}
}