newtonsoft json mengubah nama properti

using Newtonsoft.Json;
// ...

[JsonProperty(PropertyName = "FooBar")]
public string Foo { get; set; }
Enchanting Emu