Files
Umbraco-CMS/src/Umbraco.Web/Mvc/IRenderController.cs
2017-07-20 11:21:28 +02:00

13 lines
284 B
C#

using System.Web.Mvc;
namespace Umbraco.Web.Mvc
{
/// <summary>
/// A marker interface to designate that a controller will be used for Umbraco front-end requests and/or route hijacking
/// </summary>
public interface IRenderController : IController
{
}
}