Files
db/specs/models_old/library/markdown.v
2025-08-21 17:26:40 +02:00

16 lines
310 B
V

module library
import freeflowuniverse.herolib.hero.models.core
// Markdown represents a Markdown document library item
pub struct Markdown {
core.Base // Title of the document
title string @[index]
// Optional description of the document
description ?string
// The markdown content
content string
}