Created
September 29, 2017 14:13
-
-
Save Flayed/ac7181b4bb750792de9f21b3f6c48836 to your computer and use it in GitHub Desktop.
JsonProperty
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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