1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

Support for establishing a username field without a password field (#880)

* Support for establishing a username field without a password field

* added aws login
This commit is contained in:
Matt Portune
2020-05-06 09:48:34 -04:00
committed by GitHub
parent 4104f6f772
commit b29440556a
4 changed files with 87 additions and 23 deletions

View File

@@ -0,0 +1,16 @@
namespace Bit.Droid.Accessibility
{
public class KnownUsernameField
{
public KnownUsernameField(string uriAuthority, string uriPathEnd, string usernameViewId)
{
UriAuthority = uriAuthority;
UriPathEnd = uriPathEnd;
UsernameViewId = usernameViewId;
}
public string UriAuthority { get; set; }
public string UriPathEnd { get; set; }
public string UsernameViewId { get; set; }
}
}