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

13 lines
194 B
C#
Raw Normal View History

2022-02-15 11:52:43 +00:00
namespace ASC.Core.Tenants;
public enum TenantStatus
2019-05-15 14:56:09 +00:00
{
2022-02-15 11:52:43 +00:00
Active = 0,
Suspended = 1,
RemovePending = 2,
Transfering = 3,
Restoring = 4,
Migrating = 5,
Encryption = 6
}