mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-14 02:44:52 +08:00
11 lines
357 B
C#
11 lines
357 B
C#
![]() |
using System.Collections.Generic;
|
||
|
using System.Web.Routing;
|
||
|
|
||
|
namespace Orchard.Blogs.Routing {
|
||
|
public interface IBlogSlugConstraint : IRouteConstraint, ISingletonDependency {
|
||
|
void SetSlugs(IEnumerable<string> slugs);
|
||
|
string FindSlug(string slug);
|
||
|
void AddSlug(string slug);
|
||
|
void RemoveSlug(string slug);
|
||
|
}
|
||
|
}
|