Helicon Zoo Web Engines

This commit is contained in:
Virtuworks 2013-03-10 10:58:39 -04:00
parent 983d091670
commit 4768b07c92
50 changed files with 4389 additions and 36 deletions

View file

@ -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;