I'm using Newtonsoft and I have this JSON property:
[JsonProperty("br")]
public Market Market { get; set; }
But I want to set the name of the property as a variable, like this:
string market = TestContext.Parameters["market"];
[JsonProperty(market)]
public Market Market { get; set; }
There is any way to do it?