22 lines
515 B
C#
Raw Permalink Normal View History

2025-04-21 14:10:27 +08:00
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
{
/// <summary>
/// 通用模块 相关服务
/// </summary>
public interface IRedisService
{
/// <summary>
/// 获取模糊搜索的所有的key
/// </summary>
/// <returns></returns>
List<string> GetAllKeys(string key = "WebSocket*");
}
}