mirror of
https://github.com/bitwarden/server
synced 2025-12-21 10:43:44 +00:00
11 lines
195 B
C#
11 lines
195 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IBlockIpService
|
|
{
|
|
Task BlockIpAsync(string ipAddress, bool permanentBlock);
|
|
}
|
|
}
|