mirror of
https://github.com/bitwarden/android.git
synced 2026-05-22 04:22:11 -05:00
10 lines
161 B
C#
10 lines
161 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.App.Utilities
|
|
{
|
|
public interface IPasswordPromptable
|
|
{
|
|
Task<bool> PromptPasswordAsync();
|
|
}
|
|
}
|