Helicon Zoo Web Engines
This commit is contained in:
parent
983d091670
commit
4768b07c92
50 changed files with 4389 additions and 36 deletions
|
@ -33,6 +33,7 @@ using System.Text;
|
|||
|
||||
namespace WebsitePanel.Server
|
||||
{
|
||||
[Serializable]
|
||||
public class WPIProduct
|
||||
{
|
||||
private string productId;
|
||||
|
@ -45,11 +46,13 @@ namespace WebsitePanel.Server
|
|||
private string downloadedLocation;
|
||||
private string longDescription;
|
||||
private bool isInstalled;
|
||||
private bool isUpgrade;
|
||||
private int fileSize;
|
||||
private DateTime published;
|
||||
private string author;
|
||||
private string authorUri;
|
||||
|
||||
|
||||
public WPIProduct()
|
||||
{
|
||||
}
|
||||
|
@ -91,6 +94,12 @@ namespace WebsitePanel.Server
|
|||
set { this.isInstalled = value; }
|
||||
}
|
||||
|
||||
public bool IsUpgrade
|
||||
{
|
||||
get { return this.isUpgrade; }
|
||||
set { this.isUpgrade = value; }
|
||||
}
|
||||
|
||||
public string Version
|
||||
{
|
||||
get { return this.version; }
|
||||
|
@ -138,6 +147,11 @@ namespace WebsitePanel.Server
|
|||
get { return authorUri; }
|
||||
set { authorUri = value; }
|
||||
}
|
||||
|
||||
public new string ToString()
|
||||
{
|
||||
return productId;
|
||||
}
|
||||
}
|
||||
|
||||
public class WPITab
|
||||
|
@ -185,6 +199,8 @@ namespace WebsitePanel.Server
|
|||
|
||||
public class WPIKeyword
|
||||
{
|
||||
public const string HOSTING_PACKAGE_KEYWORD = "ZooPackage";
|
||||
|
||||
private string id;
|
||||
private string text;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue