Installer logic working for a new installer on sqlce
This commit is contained in:
16
src/Umbraco.Web/Install/Models/InstallSetupStepAttribute.cs
Normal file
16
src/Umbraco.Web/Install/Models/InstallSetupStepAttribute.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace Umbraco.Web.Install.Models
|
||||
{
|
||||
public sealed class InstallSetupStepAttribute : Attribute
|
||||
{
|
||||
public InstallSetupStepAttribute(string name, string view)
|
||||
{
|
||||
Name = name;
|
||||
View = view;
|
||||
}
|
||||
|
||||
public string Name { get; private set; }
|
||||
public string View { get; private set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user