using Microsoft.AspNetCore.Mvc.Filters;
using Umbraco.Cms.Core.Models.PublishedContent;
namespace Umbraco.Cms.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(ActionExecutingContext actionExecutingContext);
}