我有一个正在使用的 api,它将对我的一个服务器端方法执行一些 JSON 的 POST。
我正在创建一些映射到该 JSON 结构的 C# 类。我的问题是发布给我的字段之一被命名为“对象”,它是一个字符串。
这是发送给我的 JSON 示例....
[
{
"subscription_id": "1",
"object": "user",
"object_id": "1234",
"changed_aspect": "media",
"time": 1297286541
},
{
"subscription_id": "2",
"object": "tag",
"object_id": "nofilter",
"changed_aspect": "media",
"time": 1297286541
},]
这是我的问题。我如何告诉模型绑定器获取 json“对象”属性并在我的 C# 类中将其映射为不同的名称,因为对象是保留字?
public class InstagramUpdate
{
public string subscription_id { get; set; }
public string object_id { get; set; }
public string object { get; set; } //<-- what should I do here??
public string changed_aspect { get; set; }
public int time { get; set; }
}
希望这有意义吗?
谢谢!