add: 关于页面

This commit is contained in:
2024-01-27 14:08:25 +08:00
parent e033aac662
commit b07bc95a16
5 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace YaeBlog.Core.Models;
public class AboutInfo
{
public required string Introduction { get; set; }
public required string Description { get; set; }
public required string AvatarImage { get; set; }
}

View File

@@ -38,4 +38,6 @@ public class BlogOptions
/// 博客底部是否显示ICP备案信息
/// </summary>
public string? RegisterInformation { get; set; }
public required AboutInfo About { get; set; }
}