[models] move typedefs into models module

This commit is contained in:
bronsen 2026-02-07 02:49:38 +01:00
parent a7d0bee0e7
commit 312e60fa1f
2 changed files with 3 additions and 1 deletions

View file

@ -9,6 +9,9 @@ from sqlmodel import (
logger = logging.getLogger(__name__)
TeilchenDatum = tuple[int, str, str, str, str]
class TeilchenCreate(SQLModel):
description: str | None
name: str = Field(index=True)