using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOpenPublicContactFollowBatchqueryResponse. /// public class AlipayOpenPublicContactFollowBatchqueryResponse : AopResponse { /// /// 联系人关注者列表 /// [XmlArray("contact_follow_list")] [XmlArrayItem("contact_follower")] public List ContactFollowList { get; set; } } }