using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Response { /// /// AlipayCommerceTransportOfflinepayUserblacklistQueryResponse. /// public class AlipayCommerceTransportOfflinepayUserblacklistQueryResponse : AopResponse { /// /// 黑名单用户ID /// [XmlArray("black_list")] [XmlArrayItem("string")] public List BlackList { get; set; } } }