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