namespace MfGames.Nitride.Slugs; /// /// An interface that provides slugs for various paths. /// public interface ISlugConverter { /// /// Converts the given input into a slug. /// /// The input string to normalize. /// The resulting slug. string ToSlug(string input); }