Files
EarthborneTrailerblazer/ET/Web/Models/NoteInfo.cs
T
2026-06-11 09:16:01 -04:00

23 lines
526 B
C#

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