using Newtonsoft.Json; using Newtonsoft.Json.Serialization; namespace Sony.Filtr.API.Nancy.Config { public sealed class CustomJsonSerializer : JsonSerializer { public CustomJsonSerializer() { ContractResolver = new CamelCasePropertyNamesContractResolver(); Formatting = Formatting.Indented; } } }