This documentation is also published as Markdown for efficient machine reading: the whole site is indexed at /llms.txt, and every page has a clean Markdown copy under /_llms/. These are generated from the same source and cost far fewer tokens to read than this rendered HTML.

Skip to main content Skip to navigation

Project Pennington.BlogSite

Featured project card shown on the blog homepage.

Properties

Description string
Short project description.
Title string
Project title.
Url string
Link target for the card.

Constructors

Project

#
public Project(string Title, string Description, string Url)

Featured project card shown on the blog homepage.

Parameters

Title string
Project title.
Description string
Short project description.
Url string
Link target for the card.

Pennington.BlogSite.Project

namespace Pennington.BlogSite;

/// Featured project card shown on the blog homepage.
public record Project
{
    /// Short project description.
    
public string Description { get; set; }
/// Featured project card shown on the blog homepage.
public Project(string Title, string Description, string Url)
; /// Project title.
public string Title { get; set; }
/// Link target for the card.
public string Url { get; set; }
}