using System.Web.Mvc; using Umbraco.Core.Composing; using Umbraco.Web.Models; namespace Umbraco.Web.Mvc { /// /// The interface that must be implemented for a controller to be designated to execute for route hijacking /// public interface IRenderMvcController : IRenderController, IDiscoverable { /// /// The default action to render the front-end view /// /// /// ActionResult Index(ContentModel model); } }