You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
633 B
26 lines
633 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Tiobon.Core.Model.ViewModels
|
|
{
|
|
public class WeChatPushLinkMsgContentDto
|
|
{
|
|
/// <summary>
|
|
/// 图文链接标题
|
|
/// </summary>
|
|
public string title { get; set; }
|
|
/// <summary>
|
|
/// 图文描述
|
|
/// </summary>
|
|
public string description { get; set; }
|
|
/// <summary>
|
|
/// 访问URL
|
|
/// </summary>
|
|
public string viewUrl { get; set; }
|
|
/// <summary>
|
|
/// 图片URL
|
|
/// </summary>
|
|
public string pictureUrl { get; set; }
|
|
}
|
|
}
|
|
|