mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-20 10:47:56 +08:00
8 lines
277 B
C#
8 lines
277 B
C#
![]() |
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Orchard.Core.Common.Services {
|
|||
|
public interface IRoutableService : IDependency {
|
|||
|
string Slugify(string title);
|
|||
|
string GenerateUniqueSlug(string slugCandidate, IEnumerable<string> existingSlugs);
|
|||
|
}
|
|||
|
}
|