mirror of
https://github.com/bitwarden/android.git
synced 2024-12-28 20:08:43 +03:00
10 lines
153 B
C#
10 lines
153 B
C#
|
namespace Bit.Core.Enums
|
|||
|
{
|
|||
|
public enum AuthenticationStatus : byte
|
|||
|
{
|
|||
|
LoggedOut = 0,
|
|||
|
Locked = 1,
|
|||
|
Unlocked = 2,
|
|||
|
}
|
|||
|
}
|