DocSpace-buildtools/common/ASC.Core.Common/Tenants/TenantStatus.cs

13 lines
194 B
C#

namespace ASC.Core.Tenants;
public enum TenantStatus
{
Active = 0,
Suspended = 1,
RemovePending = 2,
Transfering = 3,
Restoring = 4,
Migrating = 5,
Encryption = 6
}