79 lines
1.9 KiB
C#
79 lines
1.9 KiB
C#
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; }
|
||
}
|
||
}
|