using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GDZZ.Application.Help { public interface ICacheService { #region 聊天接口 Task DelLiveHistoryService(long UserID); Task> GetLiveHistoryService(long UserID); Task SetLiveHistoryService(long UserID, List liveMessageLists); #endregion #region 聊天详情接口 #endregion } }