NewGaoKaoApi/PaymentSDK/AliPay/Domain/AttachmentExplainBean.cs

33 lines
941 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>
/// AttachmentExplainBean Data Structure.
/// </summary>
[Serializable]
public class AttachmentExplainBean : AopObject
{
/// <summary>
/// 页面展示的任务描collect_attachement值为true时必填
/// </summary>
[XmlElement("description")]
public string Description { get; set; }
/// <summary>
/// 附件列表用于定义每个附件code的描述及页面展示顺序
/// </summary>
[XmlArray("details")]
[XmlArrayItem("detail_bean")]
public List<DetailBean> Details { get; set; }
/// <summary>
/// 页面展示的任务标题collect_attachement值为true时必填
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
}
}