using System;
using System.Collections.Generic;
using System.Text;
namespace Tiobon.Core.Model.ViewModels
{
///
/// 推送模拟消息Dto
/// 作者:胡丁文
/// 时间:2020-4-24 14:52:44
///
public class WeChatPushTestDto
{
///
/// 当前选中的微信公众号
///
public string selectWeChat { get; set; }
///
/// 当前选中的操作集合
///
public string selectOperate { get; set; }
///
/// 当前选中的绑定还是订阅
///
public string selectBindOrSub { get; set; }
///
/// 当前选中的微信客户
///
public string selectCompany { get; set; }
///
/// 当前选中的消息类型
///
public string selectMsgType { get; set; }
///
/// 当前选中要发送的用户
///
public string selectUser { get; set; }
///
/// 文本消息
///
public WeChatPushTextContentDto textContent { get; set; }
///
/// 图片消息
///
public WeChatPushPictureContentDto pictureContent { get; set; }
///
/// 语音消息
///
public WeChatPushVoiceContentDto voiceContent { get; set; }
///
/// 视频消息
///
public WeChatPushVideoContentDto videoContent { get; set; }
///
/// 链接消息
///
public WeChatPushLinkMsgContentDto linkMsgContent { get; set; }
}
}