using System.Collections.Generic; using Newtonsoft.Json; namespace HH.WCS.Mobox3.AnGang.Dtos.Response { public class MoboxResponse { /// /// Mobox 接口返回 /// public class SimpleResult { [JsonProperty("resultCode")] public int Code { get; set; } [JsonProperty("resultMsg")] public string Message { get; set; } [JsonProperty("result")] public List Results { get; set; } = new List(); } } }