namespace YaeBlog.Core.Models; public class BlogOptions { public const string OptionName = "Blog"; /// /// 博客markdown文件的根目录 /// public required string Root { get; set; } /// /// 博客作者 /// public required string Author { get; set; } /// /// 博客的起始年份 /// public required int StartYear { get; set; } /// /// 博客项目的名称 /// public required string ProjectName { get; set; } /// /// 博客起始页面的背景图片 /// public required string BannerImage { get; set; } /// /// 文章页面的背景图片 /// public required string EssayImage { get; set; } /// /// 博客底部是否显示ICP备案信息 /// public string? RegisterInformation { get; set; } public required AboutInfo About { get; set; } public required List Links { get; set; } }