using System;
using System.Collections.Generic;
using System.Text;
namespace Tiobon.Core.Model.ViewModels
{
public class WeChatPushLinkMsgContentDto
{
///
/// 图文链接标题
///
public string title { get; set; }
///
/// 图文描述
///
public string description { get; set; }
///
/// 访问URL
///
public string viewUrl { get; set; }
///
/// 图片URL
///
public string pictureUrl { get; set; }
}
}