mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 01:16:22 +08:00
11 lines
195 B
C#
11 lines
195 B
C#
|
|
namespace Bit.Api.AdminConsole.Models.Response.Organizations;
|
|||
|
|
|
|||
|
|
public enum OrganizationIntegrationStatus : int
|
|||
|
|
{
|
|||
|
|
NotApplicable,
|
|||
|
|
Invalid,
|
|||
|
|
Initiated,
|
|||
|
|
InProgress,
|
|||
|
|
Completed
|
|||
|
|
}
|