add: table of contents
This commit is contained in:
10
YaeBlog.Core/Models/BlogHeadline.cs
Normal file
10
YaeBlog.Core/Models/BlogHeadline.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace YaeBlog.Core.Models;
|
||||
|
||||
public class BlogHeadline(string title, string selectorId)
|
||||
{
|
||||
public string Title { get; } = title;
|
||||
|
||||
public string SelectorId { get; set; } = selectorId;
|
||||
|
||||
public List<BlogHeadline> Children { get; } = [];
|
||||
}
|
Reference in New Issue
Block a user