using System; using System.Threading.Tasks; namespace Sanhe.Abp.MenuManagement { public interface IMenuGrantChecker { Task CheckAsync(Guid menuId, string providerName, string providerKey); } }