MCPcopy
hub / github.com/learnhouse/learnhouse / Chapter

Class Chapter

apps/api/src/db/courses/chapters.py:29–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27
28
29class Chapter(ChapterBase, table=True):
30 id: Optional[int] = Field(default=None, primary_key=True)
31 chapter_uuid: str = Field(default="", index=True)
32 creation_date: str = ""
33 update_date: str = ""
34 extra_metadata: Optional[dict] = Field(default=None, sa_column=Column(JSONB))
35
36
37class ChapterCreate(ChapterBase):

Calls 1

FieldFunction · 0.50