This commit is contained in:
2026-06-10 21:31:37 -04:00
parent 01a49c1c30
commit 3e80ce78a0
119 changed files with 6234 additions and 8 deletions
+20
View File
@@ -0,0 +1,20 @@
namespace Web.Models;
public class NoteInfo
{
public string Slug { get; set; } = "";
public string Title { get; set; } = "";
}
public class NotesIndex
{
public List<NoteInfo> Notes { get; set; } = new();
}
public class NoteDocument
{
public string Slug { get; set; } = "";
public string Title { get; set; } = "";
public string FrontmatterHtml { get; set; } = "";
public string HtmlContent { get; set; } = "";
}