如果您想使用 JSON 样式的小写名称从 Web Api 中的操作方法返回对象,有没有办法给属性名称起别名,以便下面的 C# 对象看起来像下面的 JSON 对象。
C# 响应模型
public class Account
{
public int Id { get; set; }
public string AccountName { get; set; }
public decimal AccountBalance { get; set; }
}
我希望返回的 JSON
{
"id" : 12,
"account-name" : "Primary Checking",
"account-balance" : 1000
}