mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
10 lines
249 B
C#
10 lines
249 B
C#
namespace Bit.Android
|
|
{
|
|
public class AutofillCredentials
|
|
{
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public string Uri { get; set; }
|
|
public string LastUri { get; set; }
|
|
}
|
|
}
|