Files
ChronoCCG/Chrono/Model/DocData.cs
T
2026-06-23 13:41:15 -04:00

10 lines
291 B
C#

namespace Chrono.Model;
public class DocData
{
public string Title { get; init; } = "";
public string Category { get; init; } = "";
public string Content { get; init; } = "";
public System.Collections.Generic.Dictionary<string, string> Frontmatter { get; init; } = [];
}