using Umbraco.Cms.Core.Routing; namespace Umbraco.Cms.Core.Notifications; /// /// 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; } }