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.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Model/ViewModels/WeChatCardMsgDataDto.cs

23 lines
553 B

using System;
using System.Collections.Generic;
using System.Text;
namespace Tiobon.Core.Model.ViewModels
{
/// <summary>
/// 微信推送消息Dto
/// 作者:胡丁文
/// 时间:2020-4-8 09:16:16
/// </summary>
public class WeChatCardMsgDataDto
{
/// <summary>
/// 推送关键信息
/// </summary>
public WeChatUserInfo info { get; set; }
/// <summary>
/// 推送卡片消息Dto
/// </summary>
public WeChatCardMsgDetailDto cardMsg { set; get; }
}
}