分享至
與其他工程師做資料串接時,有時會遇到自己程式已經定義好的欄位名稱,不符合對方的命名規範,這時可以使用 JsonProperty,將類別屬性另外設定別名。
public class Student { [JsonProperty("INDEX")] public ulong Index { get; set; } [JsonProperty("NAME")] public string Name { get; set; } }
IT邦幫忙