Files
Umbraco-CMS/umbraco/presentation/install/steps/Definitions/License.cs
2010-12-06 08:49:38 +00:00

29 lines
611 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using umbraco.cms.businesslogic.installer;
namespace umbraco.presentation.install.steps.Definitions {
public class License : InstallerStep {
public override string Alias {
get { return "license"; }
}
public override string Name {
get { return "License"; }
}
public override string UserControl {
get { return IO.SystemDirectories.Install + "/steps/license.ascx"; }
}
public override bool Completed() {
return false;
}
}
}