NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayCommerceTransportOffl...

20 lines
514 B
C#

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