bitwarden-mobile/src/Core/Enums/OrganizationUserStatusType.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
159 B
C#
Raw Normal View History

2019-04-03 20:21:54 +02:00
namespace Bit.Core.Enums
{
public enum OrganizationUserStatusType : byte
{
Invited = 0,
Accepted = 1,
Confirmed = 2
}
}