Added functionality of Service Levels
This commit is contained in:
parent
4c58752483
commit
b1c52c36eb
39 changed files with 2282 additions and 175 deletions
|
@ -51,6 +51,8 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
string publicFolderPermission;
|
||||
string userPrincipalName;
|
||||
string notes;
|
||||
int levelId;
|
||||
bool isVip;
|
||||
|
||||
public int AccountId
|
||||
{
|
||||
|
@ -177,6 +179,20 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
set { this.enableArchiving = value; }
|
||||
}
|
||||
|
||||
|
||||
public bool IsVIP
|
||||
{
|
||||
get { return this.isVip; }
|
||||
set { this.isVip = value; }
|
||||
}
|
||||
|
||||
public int LevelId
|
||||
{
|
||||
get { return this.levelId; }
|
||||
set { this.levelId = value; }
|
||||
}
|
||||
|
||||
public bool Disabled { get; set; }
|
||||
|
||||
public bool Locked { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue