Files
authoring-service/src/authoring_service/models.py
2026-07-09 16:34:28 +01:00

35 lines
559 B
Python
Executable File

"""Shared data models."""
from __future__ import annotations
from dataclasses import dataclass
@dataclass
class OrgPage:
path: str
page_type: str
title: str
slug: str
tags: list[str]
content: str
date: str
comments: bool
options: str
wip: str | None = None
@dataclass
class ContentPage:
path: str
page_type: str
title: str
slug: str
tags: list[str]
content: str
date: str
comments: bool
options: str
format: str
wip: str | None = None