Vibe documents

This commit is contained in:
6d486f49
2026-06-23 13:30:43 -04:00
parent 6eaf7b0980
commit 89bd1ca1f9
92 changed files with 69503 additions and 67 deletions
+9
View File
@@ -0,0 +1,9 @@
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; } = [];
}