using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AntMerchantExpandScodeApplyModel Data Structure. /// [Serializable] public class AntMerchantExpandScodeApplyModel : AopObject { /// /// apply_code_request,申请S码的请求参数 /// [XmlArray("apply_code_request")] [XmlArrayItem("apply_code_request")] public List ApplyCodeRequest { get; set; } } }