using System; using System.Collections.Generic; using System.Text; namespace WCS.Model.ApiModel.MXBackgroundThread { public class MXResponse { public int code { get; set; } public string msg { get; set; } public object data { get; set; } } }