namespace YaeBlog.Core.Models;
public class BlogOptions
{
public const string OptionName = "Blog";
///
/// 博客markdown文件的根目录
///
public required string Root { get; set; }
///
/// 博客正文的广而告之
///
public required string Announcement { get; set; }
///
/// 博客的起始年份
///
public required int StartYear { get; set; }
///
/// 博客的友链
///
public required List Links { get; set; }
}