20 lines
576 B
C#
20 lines
576 B
C#
using System.Web.Mvc;
|
|
using Umbraco.Core.Composing;
|
|
using Umbraco.Web.Models;
|
|
|
|
namespace Umbraco.Web.Mvc
|
|
{
|
|
/// <summary>
|
|
/// The interface that must be implemented for a controller to be designated to execute for route hijacking
|
|
/// </summary>
|
|
public interface IRenderMvcController : IRenderController, IDiscoverable
|
|
{
|
|
/// <summary>
|
|
/// The default action to render the front-end view
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
ActionResult Index(ContentModel model);
|
|
}
|
|
}
|