mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-16 01:07:29 +00:00
support json serialization
This commit is contained in:
@@ -73,8 +73,17 @@ public struct Stat : IFlatbufferObject
|
||||
|
||||
public class StatT
|
||||
{
|
||||
#if ENABLE_JSON_SERIALIZATION
|
||||
[Newtonsoft.Json.JsonProperty("id")]
|
||||
#endif
|
||||
public string Id { get; set; }
|
||||
#if ENABLE_JSON_SERIALIZATION
|
||||
[Newtonsoft.Json.JsonProperty("val")]
|
||||
#endif
|
||||
public long Val { get; set; }
|
||||
#if ENABLE_JSON_SERIALIZATION
|
||||
[Newtonsoft.Json.JsonProperty("count")]
|
||||
#endif
|
||||
public ushort Count { get; set; }
|
||||
|
||||
public StatT() {
|
||||
|
||||
Reference in New Issue
Block a user