Updates to the installer UI

Adds database and packages step
This commit is contained in:
perploug
2014-03-03 08:57:00 +01:00
parent 3fc96a45a6
commit ce65ae8742
28 changed files with 337 additions and 103 deletions

View File

@@ -4,13 +4,15 @@ namespace Umbraco.Web.Install.Models
{
public sealed class InstallSetupStepAttribute : Attribute
{
public InstallSetupStepAttribute(string name, string view)
public InstallSetupStepAttribute(string name, string view, string description)
{
Name = name;
View = view;
Description = description;
}
public string Name { get; private set; }
public string View { get; private set; }
public string Description { get; private set; }
}
}