mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
Keep text/value as get properties
Needed for binding in winforms, oops
This commit is contained in:
parent
9401b7a790
commit
ba593800d8
1 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,8 @@ namespace PKHeX.Core
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public readonly struct ComboItem : IEquatable<int>
|
public readonly struct ComboItem : IEquatable<int>
|
||||||
{
|
{
|
||||||
public readonly string Text;
|
public string Text { get; }
|
||||||
public readonly int Value;
|
public int Value { get; }
|
||||||
|
|
||||||
public ComboItem(string text, int value)
|
public ComboItem(string text, int value)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue