ZrAdminNetCore/ZR.ServiceCore/Services/IService/IRateLimitRuleService.cs

11 lines
287 B
C#

using ZR.Service;
using ZR.ServiceCore.Model;
namespace ZR.ServiceCore.Services.IService;
public interface IRateLimitRuleService : IBaseService<RateLimitRule>
{
Task<List<RateLimitRule>> DeleteRateLimitRuleAsync(long id);
Task<char> ChangeRateLimitRuleFlagAsync(long id);
}