Klassd.Backoffice 0.0.1-beta.1

This is a prerelease version of Klassd.Backoffice.
dotnet add package Klassd.Backoffice --version 0.0.1-beta.1
                    
NuGet\Install-Package Klassd.Backoffice -Version 0.0.1-beta.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Klassd.Backoffice" Version="0.0.1-beta.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Klassd.Backoffice" Version="0.0.1-beta.1" />
                    
Directory.Packages.props
<PackageReference Include="Klassd.Backoffice" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Klassd.Backoffice --version 0.0.1-beta.1
                    
#r "nuget: Klassd.Backoffice, 0.0.1-beta.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Klassd.Backoffice@0.0.1-beta.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Klassd.Backoffice&version=0.0.1-beta.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Klassd.Backoffice&version=0.0.1-beta.1&prerelease
                    
Install as a Cake Tool

Klassd

A code-first, NuGet-distributed headless CMS for .NET. You define your content model — pages, blocks and property types — as plain C# classes. The engine reflects over them to drive a Blazor (Interactive Server) admin at /admin and a headless JSON API at /api. No content-type designer, no database migrations to hand-write, no JavaScript build step.

⚠️ Beta. Klassd is in public beta (0.0.x). It works and is tested, but the API surface may change between releases until 1.0. Pin your versions and read the release notes when upgrading.

Install

Install the engine plus one storage adapter (add --prerelease while in beta):

dotnet add package Klassd.Backoffice --prerelease
dotnet add package Klassd.Data.Sqlite --prerelease
builder.Services
    .AddKlassd(builder.Configuration)                       // discovers your C# content types
    .UseSqlite(builder.Configuration.GetSection("Sqlite")); // or .UseMongoDb / .UsePostgres

var app = builder.Build();
app.UseKlassd();   // auth + antiforgery + seed/init + static assets + /api + Blazor admin
app.Run();

Packages

Package Purpose
Klassd.Abstractions Storage adapter interfaces + DB-agnostic POCOs (no deps)
Klassd.Core Content base types, attributes, registries, localization, default property types
Klassd.Backoffice The engine: AddKlassd/UseKlassd, Blazor admin, headless /api
Klassd.Data.MongoDb / .Data.Postgres / .Data.Sqlite Storage adapters
Klassd.Cache.InMemory / .Cache.Redis Read-through page cache adapters
Klassd.Media.FileSystem / .Media.S3 / .Media.GoogleCloud Media blob adapters
Klassd.Auth.OpenIdConnect OIDC/OAuth SSO for the backoffice (SAML via the generic seam)

The engine package carries no MongoDB/AWS/Google dependency — each adapter keeps its SDK isolated, so you only pull in what you wire up.

Documentation

Full quickstart, screenshots, media/CORS/deployment guides and runnable samples are on the project's GitHub repository: https://github.com/getklassd/Klassd

License

MIT © Mark Lonquist

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Klassd.Backoffice:

Package Downloads
Klassd.Auth.OpenIdConnect

OpenID Connect / OAuth 2.0 single sign-on for the Klassd backoffice (SSO).

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.1-beta.1 26 6/4/2026