Files
Kg.SeaTime/Service/Application.Domain/Services/Interface/Chat/IGameChatService.cs
2026-07-16 12:48:31 +08:00

16 lines
653 B
C#

namespace Application.Domain;
public interface IGameChatService
{
Task<List<GameChatView>> GetChatTop(string userId,int areaId, int top, string teamId, string groupId);
Task<List<GameChatView>> GetChatData(string userId, int type, int areaId, string teamId, string groupId, int page,
int limit,
RefAsync<int> total);
Task<bool> SendChat(string userId, int areaId, string code, string sign, string par = "");
Task<bool> SendChat(string userId, string code, string sign, string par = "");
Task<game_chat> GetChatInfo(string chatId);
Task<bool> DeleteChat(string chatId, string opUser);
Task ClearChat();
}