minor fixes

This commit is contained in:
2026-08-02 23:19:36 +02:00
parent be42044011
commit 30b28d72a6
2 changed files with 52 additions and 3 deletions

View File

@@ -43,6 +43,15 @@ class Event:
date_to: Optional[str] = None
@dataclass
class Item:
"""A product/item within an event."""
id: int
name: str
internal_name: Optional[str] = None
@dataclass
class CheckinList:
"""A check-in list within an event."""