using GDZZ.Core; using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; using GDZZ.Application.Entity; namespace GDZZ.Application { public interface IFeedBackService { Task GetFeedBackList(); Task AddFeedBack(FeedBackInput backInput); } }