[System.Serializable] public class KeyValueObject { public string label; public object value; public KeyValueObject(string label, object value) { this.label = label; this.value = value; } }