HeroContent Pennington.BlogSite
Hero block at the top of the blog homepage.
Properties
Descriptionstring- Hero subhead/body text.
Titlestring- Hero headline.
Constructors
HeroContent
#public HeroContent(string Title, string Description)
Hero block at the top of the blog homepage.
Parameters
Titlestring- Hero headline.
Descriptionstring- Hero subhead/body text.
Pennington.BlogSite.HeroContent
namespace Pennington.BlogSite;
/// Hero block at the top of the blog homepage.
public record HeroContent
{
/// Hero subhead/body text.
public string Description { get; set; }
/// Hero block at the top of the blog homepage.
public HeroContent(string Title, string Description)
;
/// Hero headline.
public string Title { get; set; }
}