13 lines
197 B
C#
13 lines
197 B
C#
using System.Web.Mvc;
|
|
using Umbraco.Web.Mvc;
|
|
|
|
namespace WebCms.Controllers
|
|
{
|
|
public class LeafInputController : SurfaceController
|
|
{
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
} |