mirror of
https://github.com/bitwarden/server.git
synced 2026-02-13 04:13:42 +08:00
7 lines
132 B
C#
7 lines
132 B
C#
namespace Bit.Core.Services;
|
|
|
|
public interface IBlockIpService
|
|
{
|
|
Task BlockIpAsync(string ipAddress, bool permanentBlock);
|
|
}
|