I have the following Class definition:
class PostObject
{
public string jsonrpc { get; set; }
public string method { get; set; }
public MyObject params { get; set; }
public string id { get; set; }
}
I use this class for a post call (serialized in json) and the server has 'params' as an input post var and there's no way to change it.
The question is that as params is a reserved keyword in c#, what should I do?