mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-07-16 13:20:41 +08:00
12 lines
366 B
C#
12 lines
366 B
C#
using System.Collections.Generic;
|
|
using System.Web.Routing;
|
|
|
|
namespace Orchard.Core.Routable {
|
|
public interface IRoutablePathConstraint : IRouteConstraint, ISingletonDependency {
|
|
void SetPaths(IEnumerable<string> paths);
|
|
string FindPath(string path);
|
|
void AddPath(string path);
|
|
void RemovePath(string path);
|
|
}
|
|
}
|