/*********************************************************************** * Project: CoreCms * ProjectName: 核心内容管理系统 * Web: https://www.corecms.net * Author: 大灰灰 * Email: jianweie@163.com * CreateTime: 2021/7/30 14:19:49 * Description: 暂无 ***********************************************************************/ namespace Zncy.CloudCar.WeChat.Service.Configuration { /// /// 常用常量配置 /// public static class RequestMsgType { // 各种消息类型,除了扫带二维码事件 /// /// 文本消息 /// public const string Text = "text"; /// /// 图片消息 /// public const string Image = "image"; /// /// 语音消息 /// public const string Voice = "voice"; /// /// 视频消息 /// public const string Video = "video"; /// /// 小视频消息 /// public const string ShortVideo = "shortvideo"; /// /// 地理位置消息 /// public const string Location = "location"; /// /// 链接消息 /// public const string Link = "link"; /// /// 事件推送消息 /// public const string MessageEvent = "event"; } }