Installer logic working for a new installer on sqlce

This commit is contained in:
Shannon
2014-02-26 16:30:25 +01:00
parent 64a37209b8
commit a9916fc415
13 changed files with 208 additions and 66 deletions

View 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; }
}
}