mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
16 lines
383 B
C#
16 lines
383 B
C#
namespace Bit.App.Models
|
|
{
|
|
public class LoginResult
|
|
{
|
|
public bool Success { get; set; }
|
|
public string ErrorMessage { get; set; }
|
|
}
|
|
|
|
public class FullLoginResult : LoginResult
|
|
{
|
|
public bool TwoFactorRequired { get; set; }
|
|
public SymmetricCryptoKey Key { get; set; }
|
|
public string MasterPasswordHash { get; set; }
|
|
}
|
|
}
|