HeliconApeStatus instead of several boolean variables
This commit is contained in:
parent
202d058912
commit
a22fc06d07
4 changed files with 44 additions and 23 deletions
|
@ -30,6 +30,7 @@ using System;
|
|||
using System.ComponentModel;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Specialized;
|
||||
using WebsitePanel.Providers.ResultObjects;
|
||||
|
||||
namespace WebsitePanel.Providers.Web
|
||||
{
|
||||
|
@ -61,6 +62,7 @@ namespace WebsitePanel.Providers.Web
|
|||
private bool securedFoldersInstalled;
|
||||
private bool heliconApeInstalled;
|
||||
private bool heliconApeEnabled;
|
||||
private HeliconApeStatus heliconApeStatus;
|
||||
|
||||
public WebSite()
|
||||
{
|
||||
|
@ -179,6 +181,12 @@ namespace WebsitePanel.Providers.Web
|
|||
get { return this.heliconApeEnabled; }
|
||||
set { this.heliconApeEnabled = value; }
|
||||
}
|
||||
|
||||
public HeliconApeStatus HeliconApeStatus
|
||||
{
|
||||
get { return this.heliconApeStatus; }
|
||||
set { this.heliconApeStatus = value; }
|
||||
}
|
||||
}
|
||||
|
||||
[Flags]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue