1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-05 03:32:21 -05:00

11 lines
195 B
C#

using System;
using System.Threading.Tasks;
namespace Bit.Core.Services
{
public interface IBlockIpService
{
Task BlockIpAsync(string ipAddress, bool permanentBlock);
}
}