mirror of
https://github.com/bitwarden/mobile
synced 2025-12-26 05:03:39 +00: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();
|
|
}
|
|
}
|