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.
16 lines
420 B
16 lines
420 B
2 years ago
|
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);
|
||
|
}
|
||
|
}
|