Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/McardStylInfo.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

32 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// McardStylInfo Data Structure.
/// </summary>
[Serializable]
public class McardStylInfo : AopObject
{
/// <summary>
/// 背景图片Id通过接口alipay.offline.material.image.upload上传图片 图片说明2M以内格式bmp、png、jpeg、jpg、gif 尺寸不小于1020*643px
/// 图片不得有圆角,不得拉伸变形
/// </summary>
[JsonProperty("background_id")]
public string BackgroundId { get; set; }
/// <summary>
/// 背景色
/// </summary>
[JsonProperty("bg_color")]
public string BgColor { get; set; }
/// <summary>
/// logo的图片ID通过接口alipay.offline.material.image.upload上传图片 图片说明1M以内格式bmp、png、jpeg、jpg、gif 尺寸不小于500*500px的正方形
/// 请优先使用商家LOGO
/// </summary>
[JsonProperty("logo_id")]
public string LogoId { get; set; }
}
}