using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GDZZ.Application
{
///
/// redis枚举配置
///
public class SystemConst
{
#region 聊天
///
/// 聊天历史列表
///
public const string LIVE_HISTORYLIST = "Live_HistoryList:";
///
/// 聊天详情
///
public const string LIVE_MESSAGE = "Live_Message:";
///
/// 聊天详情
///
public const string LIVE_UNREAD = "Live_Unread:";
#endregion
#region 用户
///
/// 小程序用户信息
///
public const string MINI_USERINFO = "Live_Message:";
///
/// 小程序电话验证码
///
public const string MINI_USERPHONECODE = "User_PhoneCode:";
#endregion
}
}