25 lines
586 B
C#
25 lines
586 B
C#
using LiveForum.Code.Base;
|
|
using LiveForum.Model.Dto.Others;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LiveForum.IService.Others
|
|
{
|
|
/// <summary>
|
|
/// 反馈建议服务接口
|
|
/// </summary>
|
|
public interface IFeedbackService
|
|
{
|
|
/// <summary>
|
|
/// 提交反馈建议
|
|
/// </summary>
|
|
/// <param name="request">请求参数</param>
|
|
/// <returns></returns>
|
|
Task<BaseResponse<FeedbackRespDto>> SubmitFeedback(FeedbackReq request);
|
|
}
|
|
}
|