Project Pennington.BlogSite
Featured project card shown on the blog homepage.
Properties
Descriptionstring- Short project description.
Titlestring- Project title.
Urlstring- Link target for the card.
Constructors
.ctor
#public record Project(string Title, string Description, string Url);Featured project card shown on the blog homepage.
Parameters
Titlestring- Project title.
Descriptionstring- Short project description.
Urlstring- Link target for the card.
Pennington.BlogSite.Project
namespace Pennington.BlogSite;
/// Featured project card shown on the blog homepage.
public record Project
{
/// Featured project card shown on the blog homepage.
public record Project(string Title, string Description, string Url);
/// Short project description.
string Description
;
/// Project title.
string Title
;
/// Link target for the card.
string Url
;
}