using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayAccountInstfundAccountSyncModel Data Structure. /// [Serializable] public class AlipayAccountInstfundAccountSyncModel : AopObject { /// /// 账号信息 /// [XmlElement("inst_account")] public InstAccountDTO InstAccount { get; set; } } }