Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/NewsfeedMediaGiftInfo.cs

66 lines
1.3 KiB
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// NewsfeedMediaGiftInfo Data Structure.
/// </summary>
[Serializable]
public class NewsfeedMediaGiftInfo : AopObject
{
/// <summary>
/// 地址
/// </summary>
[JsonProperty("action")]
public string Action { get; set; }
/// <summary>
/// 安卓的高度
/// </summary>
[JsonProperty("adr_height")]
public string AdrHeight { get; set; }
/// <summary>
/// 安卓缩略图
/// </summary>
[JsonProperty("adr_thumb")]
public string AdrThumb { get; set; }
/// <summary>
/// 安卓宽度
/// </summary>
[JsonProperty("adr_width")]
public string AdrWidth { get; set; }
/// <summary>
/// ios高度
/// </summary>
[JsonProperty("ios_height")]
public string IosHeight { get; set; }
/// <summary>
/// ios缩略图
/// </summary>
[JsonProperty("ios_thumb")]
public string IosThumb { get; set; }
/// <summary>
/// ios宽度
/// </summary>
[JsonProperty("ios_width")]
public string IosWidth { get; set; }
/// <summary>
/// 大图
/// </summary>
[JsonProperty("theme")]
public string Theme { get; set; }
/// <summary>
/// 红包类型all、f、m
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
}
}