mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
26 lines
No EOL
666 B
C#
26 lines
No EOL
666 B
C#
using Bit.App.Enums;
|
|
|
|
namespace Bit.Android.Autofill
|
|
{
|
|
public class SavedItem
|
|
{
|
|
public CipherType Type { get; set; }
|
|
public LoginItem Login { get; set; }
|
|
public CardItem Card { get; set; }
|
|
|
|
public class LoginItem
|
|
{
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
|
|
public class CardItem
|
|
{
|
|
public string Name { get; set; }
|
|
public string Number { get; set; }
|
|
public string ExpMonth { get; set; }
|
|
public string ExpYear { get; set; }
|
|
public string Code { get; set; }
|
|
}
|
|
}
|
|
} |