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