Files
server/src/Core/Services/IBlockIpService.cs

11 lines
195 B
C#

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