mirror of
https://github.com/bitwarden/mobile
synced 2025-02-03 11:58:06 +01:00
11 lines
249 B
C#
11 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; }
|
|
}
|
|
}
|