using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc.Filters; namespace Admin.Core.Logs { /// /// 操作日志处理接口 /// public interface ILogHandler { /// /// 写操作日志 /// /// /// /// Task LogAsync(ActionExecutingContext context, ActionExecutionDelegate next); } }