初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
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; }
}
}