namespace LFlow.Middleware { public interface ILFlowMiddleware { /// /// 优先级 /// int Priority { get; } /// /// 中间件执行入口 /// /// /// /// Task RunAsync(HttpContext context, Func next); } }