I'm trying to parse a json file that contains a parameter named ref. I'm deserializing into a class structure:
public class JiveContentObject
{
public int id { get; set;}
public string subject { get; set;}
..etc
}
however, I can't exactly write public string ref {get; set;}
since ref
is a keyword in c#. Is there any way I can work around this?