Updates to the installer UI
Adds database and packages step
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user