1
0
mirror of https://github.com/bitwarden/mobile.git synced 2025-01-22 21:11:27 +01:00
bitwarden-mobile/src/Android/AutofillCredentials.cs

11 lines
249 B
C#
Raw Normal View History

2017-01-28 05:32:48 +01:00
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; }
}
}