NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiItemDescription.cs

27 lines
736 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>
/// KoubeiItemDescription Data Structure.
/// </summary>
[Serializable]
public class KoubeiItemDescription : AopObject
{
/// <summary>
/// 标题下的描述列表,列表类型,每项不得为空,最多10项总长度不能超过2600个中文字符
/// </summary>
[XmlArray("details")]
[XmlArrayItem("string")]
public List<string> Details { get; set; }
/// <summary>
/// 描述标题不得超过40个中文字符
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
}
}