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