using System.Collections.Generic; namespace SiteCore.taoObj { public class Api_waybill_code_response_Obj { public Response response { get; set; } public class Response { /// /// /// public Data data { get; set; } /// /// /// public string success { get; set; } } public class Data { /// /// /// public List content { get; set; } } public class ContentItem { /// /// /// public string outerCode { get; set; } /// /// /// public string result { get; set; } /// /// /// public string waybillCode { get; set; } } } }