using System.Threading.Tasks; namespace Volo.Abp.SettingManagement.Blazor { public interface ISettingComponentContributor { Task ConfigureAsync(SettingComponentCreationContext context); Task CheckPermissionsAsync(SettingComponentCreationContext context); } }