NewGaoKaoApi/PaymentSDK/AliPay/Domain/NewsfeedMediaGiftInfo.cs

67 lines
1.5 KiB
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// NewsfeedMediaGiftInfo Data Structure.
/// </summary>
[Serializable]
public class NewsfeedMediaGiftInfo : AopObject
{
/// <summary>
/// 地址
/// </summary>
[XmlElement("action")]
public string Action { get; set; }
/// <summary>
/// 安卓的高度
/// </summary>
[XmlElement("adr_height")]
public string AdrHeight { get; set; }
/// <summary>
/// 安卓缩略图
/// </summary>
[XmlElement("adr_thumb")]
public string AdrThumb { get; set; }
/// <summary>
/// 安卓宽度
/// </summary>
[XmlElement("adr_width")]
public string AdrWidth { get; set; }
/// <summary>
/// ios高度
/// </summary>
[XmlElement("ios_height")]
public string IosHeight { get; set; }
/// <summary>
/// ios缩略图
/// </summary>
[XmlElement("ios_thumb")]
public string IosThumb { get; set; }
/// <summary>
/// ios宽度
/// </summary>
[XmlElement("ios_width")]
public string IosWidth { get; set; }
/// <summary>
/// 大图
/// </summary>
[XmlElement("theme")]
public string Theme { get; set; }
/// <summary>
/// 红包类型all、f、m
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}