using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PayForPrivilegeCardTemplateHeaderConfig Data Structure.
///
[Serializable]
public class PayForPrivilegeCardTemplateHeaderConfig : AopObject
{
///
/// 卡模板头部logo图片URL,通过https://docs.open.alipay.com/common/105258 接口上传图片获得
///
[XmlElement("logo")]
public string Logo { get; set; }
///
/// 卡模板头部底图URL,通过https://docs.open.alipay.com/common/105258上传图片获得
///
[XmlElement("strip")]
public string Strip { get; set; }
///
/// 卡模板头部显示名称
///
[XmlElement("title")]
public string Title { get; set; }
}
}