mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Work Item: 17261 --HG-- branch : dev extra : transplant_source : Y%BC%1F%0E%A2%C5%10%BE%3B%82P%21%FC%FA%ED%FE%A7%26%9B%92
11 lines
357 B
C#
11 lines
357 B
C#
using System.Collections.Generic;
|
|
using System.Web.Routing;
|
|
|
|
namespace Orchard.Blogs.Routing {
|
|
public interface IBlogPathConstraint : IRouteConstraint, ISingletonDependency {
|
|
void SetPaths(IEnumerable<string> paths);
|
|
string FindPath(string path);
|
|
void AddPath(string path);
|
|
void RemovePath(string path);
|
|
}
|
|
} |