0
I have a c# application where the dto properties are serialized with newtonjson in this way:
PropertyOne -> propertyOne
PROPERTYTwo -> propertyTwo
I have also Nancy swagger but the properties generated of the DTO are:
PropertyOne -> propertyOne
PROPERTYTwo -> pROPERTYTwo
How can i set Nancy.Swagger to use the newtonjson method of serialization?
Thanks