using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// ApplyCodeResponse Data Structure. /// [Serializable] public class ApplyCodeResponse : AopObject { /// /// apply_code_results,申请S码的结果中的批量发码结果 /// [XmlArray("apply_code_result")] [XmlArrayItem("apply_code_result")] public List ApplyCodeResult { get; set; } } }