using System.Collections.Generic; using System.Threading.Tasks; namespace Volo.Abp.OperationRateLimit; public interface IOperationRateLimitPolicyProvider { Task GetAsync(string policyName); Task> GetListAsync(); }