13 lines
449 B
C#
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);
|
|
|
|
} |