1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00
Files
mobile/src/Core/Enums/AuthenticationStatus.cs
2022-01-16 22:43:37 -05:00

11 lines
173 B
C#

namespace Bit.Core.Enums
{
public enum AuthenticationStatus : byte
{
LoggedOut = 0,
Locked = 1,
Unlocked = 2,
Active = 3,
}
}