custom-chatbot / data /ReplayJsonSerializerSettings.cs
fastx's picture
Upload 84 files
ac55997
raw
history blame
365 Bytes
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,
};
}
}
}