using Senparc.Weixin.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Senparc.Weixin.MP.AdvancedAPIs.Media
{
///
/// 视频永久素材
///
public class GetForeverMediaVideoResultJson : WxJsonResult
{
///
/// 视频素材的标题
///
public string title { get; set; }
///
/// 视频素材的说明
///
public string description { get; set; }
///
/// 视频素材的下载链接
///
public string down_url { get; set; }
}
//public class GetForeverMediaResultJson_NewsItem
//{
// ///
// /// 图文消息的标题
// ///
// public string title { get; set; }
// ///
// /// 图文消息的封面图片素材id(必须是永久mediaID)
// ///
// public string thumb_media_id { get; set; }
// ///
// /// 是否显示封面,0为false,即不显示,1为true,即显示
// ///
// public int show_cover_pic { get; set; }
// ///
// /// 作者
// ///
// public string author { get; set; }
// ///
// /// 图文消息的摘要,仅有单图文消息才有摘要,多图文此处为空
// ///
// public string digest { get; set; }
// ///
// /// 图文消息的具体内容,支持HTML标签,必须少于2万字符,小于1M,且此处会去除JS
// ///
// public string content { get; set; }
// ///
// /// 图文页的URL
// ///
// public string url { get; set; }
// ///
// /// 图文消息的原文地址,即点击“阅读原文”后的URL
// ///
// public string content_source_url { get; set; }
//}
}