2020-05-06 16:48:34 +03:00
|
|
|
|
namespace Bit.Droid.Accessibility
|
|
|
|
|
{
|
|
|
|
|
public class KnownUsernameField
|
|
|
|
|
{
|
2020-08-06 19:38:25 +03:00
|
|
|
|
public KnownUsernameField(string uriAuthority, (string UriPathWanted, string UsernameViewId)[] accessOptions)
|
2020-05-06 16:48:34 +03:00
|
|
|
|
{
|
|
|
|
|
UriAuthority = uriAuthority;
|
2020-08-06 19:38:25 +03:00
|
|
|
|
AccessOptions = accessOptions;
|
2020-05-06 16:48:34 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string UriAuthority { get; set; }
|
2020-08-06 19:38:25 +03:00
|
|
|
|
public (string UriPathWanted, string UsernameViewId)[] AccessOptions { get; set; }
|
2020-05-06 16:48:34 +03:00
|
|
|
|
}
|
|
|
|
|
}
|