This site provides a machine-readable index at /llms.txt.

Skip to main content Skip to navigation

IRedirectable Pennington.FrontMatter

Content that can redirect to another URL.

Properties

RedirectUrl string?
Target URL when this page should redirect; null or 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; }
}