Skip to content

Instantly share code, notes, and snippets.

@Flayed
Created September 29, 2017 14:13
Show Gist options
  • Select an option

  • Save Flayed/ac7181b4bb750792de9f21b3f6c48836 to your computer and use it in GitHub Desktop.

Select an option

Save Flayed/ac7181b4bb750792de9f21b3f6c48836 to your computer and use it in GitHub Desktop.
JsonProperty
using Newtonsoft.Json;
namespace Flayed.JsonConvertDemo
{
public class CustomFieldsDto
{
[JsonProperty("17040")]
public string CustomFieldOne { get; set; }
[JsonProperty("823")]
public string CustomFieldTwo { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment