1
0
mirror of https://github.com/bitwarden/server synced 2025-12-30 23:23:37 +00:00
Files
server/src/Core/Dirt/Enums/EventSystemUser.cs

11 lines
174 B
C#

namespace Bit.Core.Enums;
public enum EventSystemUser : byte
{
Unknown = 0,
SCIM = 1,
DomainVerification = 2,
PublicApi = 3,
TwoFactorDisabled = 4,
}