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
Project
#public 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
{
/// 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; }
}