using Umbraco.Core.Models.PublishedContent; namespace Umbraco.Web.Common.Controllers { /// /// Used for custom routed controllers to execute within the context of Umbraco /// public interface IVirtualPageController { /// /// Returns the to use as the current page for the request /// IPublishedContent FindContent(); } }