NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayItemGoodsList.cs

27 lines
700 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayItemGoodsList Data Structure.
/// </summary>
[Serializable]
public class AlipayItemGoodsList : AopObject
{
/// <summary>
/// 外部单品的描述信息(此字段暂时无用)
/// </summary>
[XmlElement("desc")]
public string Desc { get; set; }
/// <summary>
/// 外部单品id列表传入服务商、商户系统中的商品id。
/// </summary>
[XmlArray("goods_list")]
[XmlArrayItem("string")]
public List<string> GoodsList { get; set; }
}
}