mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-03-12 04:35:27 -07:00
15 lines
449 B
C#
15 lines
449 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Ombi.Helpers
|
|
{
|
|
public static class SerializerSettings
|
|
{
|
|
public static readonly JsonSerializerSettings Settings = new JsonSerializerSettings
|
|
{
|
|
Formatting = Formatting.None,
|
|
//TypeNameHandling = TypeNameHandling.Objects,
|
|
//TypeNameAssemblyFormat = FormatterAssemblyStyle.Simple,
|
|
NullValueHandling = NullValueHandling.Ignore
|
|
};
|
|
}
|
|
} |