mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
16 lines
327 B
C#
16 lines
327 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IPasswordRepromptService
|
|
{
|
|
string[] ProtectedFields { get; }
|
|
|
|
Task<bool> ShowPasswordPromptAsync();
|
|
|
|
Task<(string password, bool valid)> ShowPasswordPromptAndGetItAsync();
|
|
|
|
Task<bool> Enabled();
|
|
}
|
|
}
|