Guest User

Untitled

a guest
Dec 18th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public class Transaction
  2. {
  3. [JsonProperty(Order = 1, NullValueHandling = NullValueHandling.Include, PropertyName = "sender")]
  4. public string Sender { get; set; }
  5.  
  6. [JsonProperty(Order = 2, NullValueHandling = NullValueHandling.Include, PropertyName = "recipient")]
  7. public string Recipient { get; set; }
  8.  
  9. [JsonProperty(Order = 3, NullValueHandling = NullValueHandling.Include, PropertyName = "amount")]
  10. public int Amount { get; set; }
  11. }
Add Comment
Please, Sign In to add comment