NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialBaseContentlibN...

79 lines
1.9 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>
/// AlipaySocialBaseContentlibNewsflashSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialBaseContentlibNewsflashSendModel : AopObject
{
/// <summary>
/// 作者
/// </summary>
[XmlElement("author")]
public string Author { get; set; }
/// <summary>
/// 内容
/// </summary>
[XmlElement("content")]
public string Content { get; set; }
/// <summary>
/// 扩展信息json格式数据
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 配图地址
/// </summary>
[XmlElement("images")]
public string Images { get; set; }
/// <summary>
/// 标签, 多个用逗号隔开
/// </summary>
[XmlElement("opr_tags")]
public string OprTags { get; set; }
/// <summary>
/// 发布时间
/// </summary>
[XmlElement("publish_date")]
public string PublishDate { get; set; }
/// <summary>
/// 推荐权重0不可用1显示2加权
/// </summary>
[XmlElement("recommend")]
public long Recommend { get; set; }
/// <summary>
/// 来源渠道
/// </summary>
[XmlElement("source_channel_key")]
public string SourceChannelKey { get; set; }
/// <summary>
/// 快讯来源id
/// </summary>
[XmlElement("source_id")]
public string SourceId { get; set; }
/// <summary>
/// 摘要
/// </summary>
[XmlElement("summary")]
public string Summary { get; set; }
/// <summary>
/// 标题
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
}
}