You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
922 B
33 lines
922 B
using Znyc.CloudCar.Model.ViewModels.ReportsCallBack;
|
|
|
|
namespace Znyc.CloudCar.IServices.Message
|
|
{
|
|
public interface IMessageService
|
|
{
|
|
/// <summary>
|
|
/// 查询消息通知列表
|
|
/// </summary>
|
|
/// <param name="currentPage"></param>
|
|
/// <param name="pageSize"></param>
|
|
/// <returns></returns>
|
|
Task<ResponseOutput> PageAsync(int currentPage, int pageSize);
|
|
|
|
/// <summary>
|
|
/// 已读消息记录
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<ResponseOutput> UpdateAsync();
|
|
|
|
/// <summary>
|
|
/// 未读提示
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<ResponseOutput> UnreadMessage();
|
|
|
|
/// <summary>
|
|
/// 获取新用户滚动播放列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<ResponseOutput> GetRegistUserListAsync();
|
|
}
|
|
}
|
|
|