IRedirectable Pennington.FrontMatter
Content that can redirect to another URL.
Properties
RedirectUrlstring?- Target URL when this page should redirect;
nullor empty means no redirect.
Pennington.FrontMatter.IRedirectable
namespace Pennington.FrontMatter;
/// Content that can redirect to another URL.
public interface IRedirectable
{
/// Target URL when this page should redirect; null or empty means no redirect.
string? RedirectUrl { get; }
}