using Dpz.Core.Entity.Base.PublicStruct;
using Microsoft.AspNetCore.Http;

namespace Dpz.Core.Infrastructure.Intercept;

public interface IInterceptRuleService
{
    InterceptRule? CheckInterceptRules(HttpContext httpContext);
}
评论加载中...