using System.Collections.Generic; using System.Threading.Tasks; using Bit.Core.Models.Response; namespace Bit.Core.Abstractions { public interface IAuditService { Task> BreachedAccountsAsync(string username); Task PasswordLeakedAsync(string password); } }