Spaces:
Runtime error
Runtime error
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, | |
}; | |
} | |
} | |
} |