12345678910111213141516171819 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.SpsDataCourier.Models
- {
- public class Response
- {
- [JsonProperty("statusCode")]
- public string StatusCode { get; set; }
- [JsonProperty("message")]
- public string Message { get; set; }
- [JsonProperty("result")]
- public int Result { get; set; }
- }
- }
|