Initial project's source code check-in.

This commit is contained in:
ptsurbeleu 2011-07-13 16:07:32 -07:00
commit b03b0b373f
4573 changed files with 981205 additions and 0 deletions

View file

@ -0,0 +1,43 @@
using System;
namespace WebsitePanel.Providers.ResultObjects
{
[Serializable]
public class HeliconApeStatus
{
private string registrationInfo = String.Empty;
private string version = String.Empty;
private string installDir = String.Empty;
public static HeliconApeStatus Empty = new HeliconApeStatus
{
IsEnabled = false,
IsInstalled = false,
IsRegistered = false,
RegistrationInfo = String.Empty,
Version = String.Empty,
};
public bool IsEnabled { get; set; }
public bool IsInstalled { get; set; }
public bool IsRegistered { get; set; }
public string InstallDir
{
get { return installDir; }
set { installDir = value; }
}
public string Version
{
get { return version; }
set { version = value; }
}
public string RegistrationInfo
{
get { return registrationInfo; }
set { registrationInfo = value; }
}
}
}