| 28 | |
| 29 | |
| 30 | class Slide(Base): |
| 31 | __tablename__ = "slide" |
| 32 | |
| 33 | id: Mapped[int] = mapped_column(primary_key=True) |
| 34 | name: Mapped[str] |
| 35 | |
| 36 | bullets: Mapped[list[Bullet]] = relationship( |
| 37 | "Bullet", order_by="Bullet.position", collection_class=pos_from_text |
| 38 | ) |
| 39 | |
| 40 | |
| 41 | class Bullet(Base): |
no test coverage detected