From ba593800d892ed6faeca643258547bb980670ff5 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 27 Oct 2019 12:47:09 -0700 Subject: [PATCH] Keep text/value as get properties Needed for binding in winforms, oops --- PKHeX.Core/Game/ComboItem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKHeX.Core/Game/ComboItem.cs b/PKHeX.Core/Game/ComboItem.cs index ee9c663a8..0ceba58a0 100644 --- a/PKHeX.Core/Game/ComboItem.cs +++ b/PKHeX.Core/Game/ComboItem.cs @@ -8,8 +8,8 @@ namespace PKHeX.Core /// public readonly struct ComboItem : IEquatable { - public readonly string Text; - public readonly int Value; + public string Text { get; } + public int Value { get; } public ComboItem(string text, int value) {