mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
11 lines
173 B
C#
11 lines
173 B
C#
namespace Bit.Core.Enums
|
|
{
|
|
public enum AuthenticationStatus : byte
|
|
{
|
|
LoggedOut = 0,
|
|
Locked = 1,
|
|
Unlocked = 2,
|
|
Active = 3,
|
|
}
|
|
}
|