AK056/Assets/script/data/KeyValueObject.cs
2025-05-07 11:20:40 +08:00

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;
}
}