File size: 365 Bytes
ac55997
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
using Newtonsoft.Json;

namespace Quantum {
  public static class ReplayJsonSerializerSettings {
    public static JsonSerializerSettings GetSettings() {
      return new JsonSerializerSettings {
        Formatting = Formatting.Indented,
        TypeNameHandling = TypeNameHandling.Auto,
        NullValueHandling = NullValueHandling.Ignore,
      };
    }
  }
}