using Newtonsoft.Json; namespace Dfs.WayneChina.SpsDataCourier.HostModels { public class HostDataResponse { [JsonProperty("statusCode")] public string StatusCode { get; set; } [JsonProperty("message")] public string Message { get; set; } [JsonProperty("result")] public HostDataResponseResult Result { get; set; } } }