support json serialization

This commit is contained in:
mugisoba
2020-02-04 00:49:17 +09:00
parent 6400c9b054
commit e8b7292dd1
33 changed files with 887 additions and 5 deletions

View File

@@ -47,7 +47,13 @@ public struct StructInNestedNS : IFlatbufferObject
public class StructInNestedNST
{
#if ENABLE_JSON_SERIALIZATION
[Newtonsoft.Json.JsonProperty("a")]
#endif
public int A { get; set; }
#if ENABLE_JSON_SERIALIZATION
[Newtonsoft.Json.JsonProperty("b")]
#endif
public int B { get; set; }
public StructInNestedNST() {