Code-first
Your content types are C# classes. Refactor them in your IDE — no content-type designer.
Klassd is a headless CMS for .NET. Define your content model as C# classes and deliver it to any frontend over a clean JSON API.
Get started on GitHub →Your content types are C# classes. Refactor them in your IDE — no content-type designer.
A public JSON (and opt-in GraphQL) delivery API any frontend can read — this site is a Vue app consuming it.
Swap storage (Mongo/Postgres/SQLite) and media (FileSystem/S3/GCS) backends freely.
Edit a draft without touching what's live, publish when ready, schedule it, and roll back to any prior version.
Capability-based roles (Editor/Author), plus opt-in full-text search over Lucene.NET.
HMAC-signed webhooks and synchronous in-process notifications you can hook into — or cancel.
Define pages and blocks as classes. The engine reflects over them to drive the admin and a headless JSON API — no content-type designer, no migrations to hand-write.
[CmsPage(DefaultSlug = "", Icon = "house")]
public class HomePage : PageBase
{
[Localized] // value per locale
public string Title { get; set; } = "";
public BlockArea Hero { get; set; } = new();
}# Klassd is in beta — install the prerelease packages
dotnet add package Klassd.Backoffice --prerelease
dotnet add package Klassd.Data.Sqlite --prerelease