using MyCode.Project.Domain.Businesses;
using MyCode.Project.Domain.Dtos.Common;
using MyCode.Project.Domain.Procs;
using System;
using System.Collections.Generic;
namespace MyCode.Project.Services
{
///
/// 通用模块 相关服务
///
public interface IRedisService
{
///
/// 获取模糊搜索的所有的key
///
///
List GetAllKeys(string key = "WebSocket*");
}
}