Initial commit with inital CMS

This commit is contained in:
2026-06-15 17:00:16 +02:00
commit 95d986790e
132 changed files with 7624 additions and 0 deletions
@@ -0,0 +1,11 @@
namespace SlpModularCms.Core.Modules;
/// <summary>
/// Metadata over een geladen module.
/// </summary>
public record ModuleInfo(
string Name,
string Version,
string? Description = null,
bool IsLoaded = false
);