NewGaoKaoApi/PaymentSDK/AliPay/Domain/TemplateRightsContentDTO.cs

31 lines
806 B
C#
Raw Permalink 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;
namespace Aop.Api.Domain
{
/// <summary>
/// TemplateRightsContentDTO Data Structure.
/// </summary>
[Serializable]
public class TemplateRightsContentDTO : AopObject
{
/// <summary>
/// 权益内容详情
/// </summary>
[XmlElement("detail")]
public string Detail { get; set; }
/// <summary>
/// 权益icon图片Id目前用于开卡授权页使用通过接口alipay.offline.material.image.upload上传图片
/// </summary>
[XmlElement("logo_id")]
public string LogoId { get; set; }
/// <summary>
/// 权益内容标题
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
}
}