mirror of https://github.com/lidarr/Lidarr
33 lines
1.2 KiB
C#
33 lines
1.2 KiB
C#
|
using System.Linq;
|
|||
|
using Newtonsoft.Json;
|
|||
|
using Newtonsoft.Json.Serialization;
|
|||
|
|
|||
|
namespace NzbDrone.Services.Api.Extensions
|
|||
|
{
|
|||
|
public static class Serializer
|
|||
|
{
|
|||
|
static Serializer()
|
|||
|
{
|
|||
|
Settings = new JsonSerializerSettings
|
|||
|
{
|
|||
|
DateTimeZoneHandling = DateTimeZoneHandling.Utc,
|
|||
|
NullValueHandling = NullValueHandling.Ignore,
|
|||
|
Formatting = Formatting.None,
|
|||
|
DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate
|
|||
|
};
|
|||
|
|
|||
|
Instance = new JsonSerializer
|
|||
|
{
|
|||
|
DateTimeZoneHandling = Settings.DateTimeZoneHandling,
|
|||
|
NullValueHandling = NullValueHandling.Ignore,
|
|||
|
Formatting = Formatting.None,
|
|||
|
DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate,
|
|||
|
ContractResolver = new CamelCasePropertyNamesContractResolver()
|
|||
|
};
|
|||
|
}
|
|||
|
|
|||
|
public static JsonSerializerSettings Settings { get; private set; }
|
|||
|
|
|||
|
public static JsonSerializer Instance { get; private set; }
|
|||
|
}
|
|||
|
}
|