namespace Web.Models; public class NoteInfo { public string Slug { get; set; } = ""; public string Title { get; set; } = ""; } public class NotesIndex { public List 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; } = ""; }