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.
 
 

15 lines
420 B

using Znyc.CloudCar.Model.Dtos.Feedback;
using Znyc.CloudCar.Model.ViewModels.ReportsCallBack;
namespace Znyc.CloudCar.IServices.Feedback
{
public interface IFeedbackService
{
/// <summary>
/// 新增意见反馈
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
Task<ResponseOutput> AddFeedbackAsync(FeedbackAddInput input);
}
}