using Umbraco.Core.Events; namespace Umbraco.Web.Routing { /// /// Used for notifying when an Umbraco request is being built /// public class RoutingRequestNotification : INotification { /// /// Initializes a new instance of the class. /// public RoutingRequestNotification(IPublishedRequestBuilder requestBuilder) => RequestBuilder = requestBuilder; /// /// Gets the /// public IPublishedRequestBuilder RequestBuilder { get; } } }