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