14 lines
226 B
C#
14 lines
226 B
C#
|
|
[System.Serializable]
|
|
public class KeyValueObject
|
|
{
|
|
public string label;
|
|
public object value;
|
|
|
|
public KeyValueObject(string label, object value)
|
|
{
|
|
this.label = label;
|
|
this.value = value;
|
|
}
|
|
}
|