ExternalLink
Pennington.Infrastructure
A link that points to an external origin and was not verified by the internal checker.
Properties
SourcePageContentRoute- Page that contained the link.
Urlstring- External target URL.
Constructors
ExternalLink
#public ExternalLink(ContentRoute SourcePage, string Url)
A link that points to an external origin and was not verified by the internal checker.
Parameters
SourcePageContentRoute- Page that contained the link.
Urlstring- External target URL.
Pennington.Infrastructure.ExternalLink
namespace Pennington.Infrastructure;
/// A link that points to an external origin and was not verified by the internal checker.
public record ExternalLink
{
/// A link that points to an external origin and was not verified by the internal checker.
public ExternalLink(ContentRoute SourcePage, string Url)
;
/// Page that contained the link.
public ContentRoute SourcePage { get; set; }
/// External target URL.
public string Url { get; set; }
}