RICS / backend /models /__init__.py
StormShadow308's picture
Add demo documentation and Docker setup for v2 report generation system
aad7814
Raw
History Blame Contribute Delete
488 Bytes
"""Pydantic data models for the v2 backend."""
from backend.models.report import GeneratedSection, ReportResult
from backend.models.schema import (
PlaceholderSyntax,
RatingSystem,
RatingValue,
SectionDefinition,
TemplateSchema,
)
from backend.models.section import SectionNote
__all__ = [
"RatingValue",
"RatingSystem",
"PlaceholderSyntax",
"SectionDefinition",
"TemplateSchema",
"SectionNote",
"GeneratedSection",
"ReportResult",
]