Files
EarthborneTrailerblazer/ET/Web/Models/NoteInfo.cs
T
2026-06-10 21:31:37 -04:00

21 lines
442 B
C#

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; } = "";
}