using System.Collections.Generic;
using System.Threading.Tasks;
using GxPress.Request.Reply;
using GxPress.Result.Reply;
namespace GxPress.Service.Interface.Reply
{
public interface IReplyService : IService
{
///
/// 获取回复我的笔记或者话题
///
///
///
Task> GetReplyNoteOrTopicResults(ReplyRequest request);
}
}