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.
22 lines
770 B
22 lines
770 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Tiobon.Core.Model.ViewModels
|
|
{
|
|
/// <summary>
|
|
/// 推送详细数据
|
|
/// 作者:胡丁文
|
|
/// 时间:2020-4-8 09:16:16
|
|
/// </summary>
|
|
public class WeChatPushCardMsgDetailDto
|
|
{
|
|
public WeChatPushCardMsgValueColorDto first { get; set; }
|
|
public WeChatPushCardMsgValueColorDto keyword1 { get; set; }
|
|
public WeChatPushCardMsgValueColorDto keyword2 { get; set; }
|
|
public WeChatPushCardMsgValueColorDto keyword3 { get; set; }
|
|
public WeChatPushCardMsgValueColorDto keyword4 { get; set; }
|
|
public WeChatPushCardMsgValueColorDto keyword5 { get; set; }
|
|
public WeChatPushCardMsgValueColorDto remark { get; set; }
|
|
}
|
|
}
|
|
|