bitwarden-mobile/src/Core/Abstractions/IAuditService.cs

13 lines
321 B
C#
Raw Normal View History

2019-04-17 23:10:21 +02:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.Core.Models.Response;
namespace Bit.Core.Abstractions
{
public interface IAuditService
{
Task<List<BreachAccountResponse>> BreachedAccountsAsync(string username);
Task<int> PasswordLeakedAsync(string password);
}
2022-04-26 17:21:17 +02:00
}