Websitepanel user account lockout and state management added

This commit is contained in:
robvde 2012-07-30 11:19:50 +04:00
parent 008fc296d5
commit 72348041f0
27 changed files with 1705 additions and 373 deletions

View file

@ -30,14 +30,14 @@ using System;
namespace WebsitePanel.EnterpriseServer
{
/// <summary>
/// Summary description for AccountStatus.
/// </summary>
public enum UserStatus
{
Active = 1,
Suspended = 2,
Cancelled = 3,
Pending = 4
}
/// <summary>
/// Summary description for AccountStatus.
/// </summary>
public enum UserStatus
{
Active = 1,
Suspended = 2,
Cancelled = 3,
Pending = 4
}
}