IReplyService.cs 483 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Request.Reply;
  4. using GxPress.Result.Reply;
  5. namespace GxPress.Service.Interface.Reply
  6. {
  7. public interface IReplyService : IService
  8. {
  9. /// <summary>
  10. /// 获取回复我的笔记或者话题
  11. /// </summary>
  12. /// <param name="request"></param>
  13. /// <returns></returns>
  14. Task<IEnumerable<ReplyResult>> GetReplyNoteOrTopicResults(ReplyRequest request);
  15. }
  16. }