mirror of
https://github.com/bitwarden/android.git
synced 2024-12-27 11:28:28 +03:00
11 lines
253 B
C#
11 lines
253 B
C#
|
namespace Bit.Droid.Accessibility
|
||
|
{
|
||
|
public class Credentials
|
||
|
{
|
||
|
public string Username { get; set; }
|
||
|
public string Password { get; set; }
|
||
|
public string Uri { get; set; }
|
||
|
public string LastUri { get; set; }
|
||
|
}
|
||
|
}
|