diff --git a/sharp.json.csproj b/sharp.json.csproj index 262fae1..7c7319f 100644 --- a/sharp.json.csproj +++ b/sharp.json.csproj @@ -48,6 +48,7 @@ + @@ -70,6 +71,7 @@ + diff --git a/simple/KeyValue.cs b/simple/KeyValue.cs new file mode 100644 index 0000000..ec93d9c --- /dev/null +++ b/simple/KeyValue.cs @@ -0,0 +1,20 @@ +using System; +namespace sharp.json.simple +{ + public class KeyValue + { + public String Key; + public String Value; + + private KeyValue() + { + } + + public KeyValue(string key,string value = "") + { + Key = key; + Value = value; + } + + } +}