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