mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 21:33:36 +00:00
11 lines
269 B
C#
11 lines
269 B
C#
namespace Bit.App.Models.Api
|
|
{
|
|
public class LoginDataModel : CipherDataModel
|
|
{
|
|
public string Uri { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public string Totp { get; set; }
|
|
}
|
|
}
|