using System; using System.Collections.Generic; using System.Text; namespace JiepeiWMS.Model.Result { public class NCJsonResult { public bool success { get; set; } public Data data { get; set; } public string code { get; set; } public string message { get; set; } public class Data { public Ufinterface ufinterface { get; set; } } public class Ufinterface { public string filename { get; set; } public string billtype { get; set; } public string sender { get; set; } public string replace { get; set; } public string roottag { get; set; } public string isexchange { get; set; } public Sendresult[] sendresult { get; set; } public string successful { get; set; } } public class Sendresult { public string bdocid { get; set; } public string filename { get; set; } public string code { get; set; } public string resultdescription { get; set; } public string resultcode { get; set; } public string content { get; set; } } } }