mirror of
https://github.com/bitwarden/android.git
synced 2024-12-26 19:08:32 +03:00
22570e08aa
* [KnownUsernameField] Engine update (make the system more flexible) * [KnownUsernameField] Engine update (make the system more flexible) * Use of tuples array instead of multidimensional array (string[,]) * Use of tuples array instead of multidimensional array (string[,]) * [FIX] IndexOf -> Contains
14 lines
452 B
C#
14 lines
452 B
C#
namespace Bit.Droid.Accessibility
|
|
{
|
|
public class KnownUsernameField
|
|
{
|
|
public KnownUsernameField(string uriAuthority, (string UriPathWanted, string UsernameViewId)[] accessOptions)
|
|
{
|
|
UriAuthority = uriAuthority;
|
|
AccessOptions = accessOptions;
|
|
}
|
|
|
|
public string UriAuthority { get; set; }
|
|
public (string UriPathWanted, string UsernameViewId)[] AccessOptions { get; set; }
|
|
}
|
|
}
|