NewGaoKaoApi/PaymentSDK/AliPay/Domain/ViewStyleInfoModel.cs

37 lines
1.2 KiB
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>
/// ViewStyleInfoModel Data Structure.
/// </summary>
[Serializable]
public class ViewStyleInfoModel : AopObject
{
/// <summary>
/// 背景色
/// </summary>
[XmlElement("bg_color")]
public string BgColor { get; set; }
/// <summary>
/// 背景图片Id通过接口alipay.offline.material.image.upload上传图片 图片说明2M以内格式bmp、png、jpeg、jpg、gif 尺寸不小于1020*643px 图片不得有圆角,不得拉伸变形
/// </summary>
[XmlElement("bg_img")]
public string BgImg { get; set; }
/// <summary>
/// 品牌商名称
/// </summary>
[XmlElement("brand_name")]
public string BrandName { get; set; }
/// <summary>
/// logo的图片ID通过接口alipay.offline.material.image.upload上传图片 图片说明1M以内格式bmp、png、jpeg、jpg、gif 尺寸不小于500*500px的正方形 请优先使用商家LOGO
/// </summary>
[XmlElement("logo_img")]
public string LogoImg { get; set; }
}
}