namespace Umbraco.Cms.Core.Routing;
///
/// The direction of a route
///
public enum RouteDirection
{
///
/// An inbound route used to map a URL to a content item
///
Inbound = 1,
///
/// An outbound route used to generate a URL for a content item
///
Outbound = 2,
}