forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeChatPushTestDto.cs
More file actions
61 lines (58 loc) · 1.76 KB
/
WeChatPushTestDto.cs
File metadata and controls
61 lines (58 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
using System.Collections.Generic;
using System.Text;
namespace Blog.Core.Model.ViewModels
{
/// <summary>
/// 推送模拟消息Dto
/// 作者:胡丁文
/// 时间:2020-4-24 14:52:44
/// </summary>
public class WeChatPushTestDto
{
/// <summary>
/// 当前选中的微信公众号
/// </summary>
public string selectWeChat { get; set; }
/// <summary>
/// 当前选中的操作集合
/// </summary>
public string selectOperate { get; set; }
/// <summary>
/// 当前选中的绑定还是订阅
/// </summary>
public string selectBindOrSub { get; set; }
/// <summary>
/// 当前选中的微信客户
/// </summary>
public string selectCompany { get; set; }
/// <summary>
/// 当前选中的消息类型
/// </summary>
public string selectMsgType { get; set; }
/// <summary>
/// 当前选中要发送的用户
/// </summary>
public string selectUser { get; set; }
/// <summary>
/// 文本消息
/// </summary>
public WeChatPushTextContentDto textContent { get; set; }
/// <summary>
/// 图片消息
/// </summary>
public WeChatPushPictureContentDto pictureContent { get; set; }
/// <summary>
/// 语音消息
/// </summary>
public WeChatPushVoiceContentDto voiceContent { get; set; }
/// <summary>
/// 视频消息
/// </summary>
public WeChatPushVideoContentDto videoContent { get; set; }
/// <summary>
/// 链接消息
/// </summary>
public WeChatPushLinkMsgContentDto linkMsgContent { get; set; }
}
}