namespace PKHeX.Core { /// /// Key Value pair for a displayed and underlying value. /// public struct ComboItem { public string Text { get; set; } public int Value { get; set; } } }