namespace IStation.WinFrmUI { public class KeyIntValue { public KeyIntValue() { } public KeyIntValue(string key, int value) { this.Text = key; this.Value = value; } public string Text { set; get; } public int Value { set; get; } public override string ToString() { return Text; } } }