bingo 项目提交
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
namespace BingoBrain
|
||||
{
|
||||
public class KeyValue
|
||||
{
|
||||
public string key;
|
||||
public object value;
|
||||
|
||||
public KeyValue()
|
||||
{
|
||||
}
|
||||
|
||||
public KeyValue(string key, object value)
|
||||
{
|
||||
this.key = key;
|
||||
this.value = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user