...vibing UI

This commit is contained in:
2026-06-17 22:04:42 -04:00
parent 36bd610ca4
commit 1d05e18306
26 changed files with 7210 additions and 6 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace Model;
public abstract record DocEntry
{
public required string FileName { get; init; }
public required string FilePath { get; init; }
public string? Body { get; init; }
}