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:
16
src/Android/Accessibility/KnownUsernameField.cs
Normal file
16
src/Android/Accessibility/KnownUsernameField.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user