Files
Kg.SeaTime/Service/Application.Domain/Services/Interface/Chat/IGameChatService.cs
2026-05-22 09:07:38 +08:00

13 lines
449 B
C#

namespace Application.Domain;
public interface IGameChatService
{
Task<List<GameChatView>> GetChatTop(int areaId, int top, string teamId, string groupId);
Task<List<GameChatView>> GetChatData(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> DeleteChat(string chatId);
}