1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-11 13:53:29 +00:00

autofill actions

This commit is contained in:
Kyle Spearrin
2019-05-17 14:34:00 -04:00
parent f73a5d6307
commit 4112e0a4c9
3 changed files with 127 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
using Bit.Core.Enums;
using Bit.Core.Models.View;
using System.Threading.Tasks;
namespace Bit.App.Abstractions
@@ -24,5 +25,8 @@ namespace Bit.App.Abstractions
int SystemMajorVersion();
string SystemModel();
Task<string> DisplayAlertAsync(string title, string message, string cancel, params string[] buttons);
void Autofill(CipherView cipher);
void CloseAutofill();
void Background();
}
}