Response.cs 420 B

12345678910111213141516171819
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Dfs.WayneChina.SpsDataCourier.Models
  6. {
  7. public class Response
  8. {
  9. [JsonProperty("statusCode")]
  10. public string StatusCode { get; set; }
  11. [JsonProperty("message")]
  12. public string Message { get; set; }
  13. [JsonProperty("result")]
  14. public int Result { get; set; }
  15. }
  16. }