Is it possible to tell servicestack to allow unquoted properties in JSON?
I have a lot of JSON that I need to send to a service which doesn't have quoted properties - this would help a lot if it can be bound without quoted parameters.
I have this:
{
color: "blue",
size: 14
}
Servicestack wants this:
{
"color": "blue",
"size": 14
}