Files
herolib/lib/hero/models/library/markdown.v
2025-07-30 22:12:19 +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
}