using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Response { /// /// AlipayMobilePublicContactFollowListResponse. /// public class AlipayMobilePublicContactFollowListResponse : AopResponse { /// /// 返回结果码,如200,标识成功 /// [XmlElement("code")] public string Code { get; set; } /// /// 联系人关注者列表 /// [XmlArray("contact_follow_list")] [XmlArrayItem("string")] public List ContactFollowList { get; set; } } }