mirror of
https://github.com/bitwarden/android.git
synced 2024-12-28 03:48:31 +03:00
17 lines
477 B
C#
17 lines
477 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|