mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 16:42:50 -05:00
Org API controller and supporting data access
This commit is contained in:
10
src/Core/Enums/OrganizationUserStatusType.cs
Normal file
10
src/Core/Enums/OrganizationUserStatusType.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace Bit.Core.Enums
|
||||
{
|
||||
public enum OrganizationUserStatusType : byte
|
||||
{
|
||||
Invited = 0,
|
||||
Pending = 1,
|
||||
Accepted = 2,
|
||||
Confirmed = 3
|
||||
}
|
||||
}
|
9
src/Core/Enums/OrganizationUserType.cs
Normal file
9
src/Core/Enums/OrganizationUserType.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace Bit.Core.Enums
|
||||
{
|
||||
public enum OrganizationUserType : byte
|
||||
{
|
||||
Owner = 0,
|
||||
Admin = 1,
|
||||
Regular = 2
|
||||
}
|
||||
}
|
10
src/Core/Enums/PlanType.cs
Normal file
10
src/Core/Enums/PlanType.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace Bit.Core.Enums
|
||||
{
|
||||
public enum PlanType : byte
|
||||
{
|
||||
Free = 0,
|
||||
Family = 1,
|
||||
Teams = 2,
|
||||
Enterprise = 3
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user