using System.Collections.Generic;
using System.Threading.Tasks;
using GxPress.Result.Chat;
namespace GxPress.Service.Interface.Chat
{
public interface IChatSearchService : IService
{
///
/// 搜索单聊
///
///
///
///
Task> GetChatSearchAsync(string keyWord, int userId);
///
/// 搜索信源文件夹
///
///
///
///
Task> GetChatFolderNameSearchAsync(string keyWord, int userId);
///
/// 搜索信源群聊
///
///
///
///
Task> GetGroupChatNameSearchAsync(string keyWord, int userId);
///
/// 查询好友
///
///
///
///
Task> GetFriendUserInfoResult(string keyWord, int userId);
}
}