28 lines
837 B
C#
28 lines
837 B
C#
using System;
|
|
|
|
namespace Umbraco.Web.Install.Models
|
|
{
|
|
public sealed class InstallSetupStepAttribute : Attribute
|
|
{
|
|
public InstallSetupStepAttribute(string name, string view, int serverOrder, string description)
|
|
{
|
|
Name = name;
|
|
View = view;
|
|
ServerOrder = serverOrder;
|
|
Description = description;
|
|
}
|
|
|
|
public InstallSetupStepAttribute(string name, int serverOrder, string description)
|
|
{
|
|
Name = name;
|
|
View = string.Empty;
|
|
ServerOrder = serverOrder;
|
|
Description = description;
|
|
}
|
|
|
|
public string Name { get; private set; }
|
|
public string View { get; private set; }
|
|
public int ServerOrder { get; private set; }
|
|
public string Description { get; private set; }
|
|
}
|
|
} |