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/WeChatCardMsgDataOpenIDDto.cs

23 lines
567 B

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