Files
mywhoosh2garmin/app/web/forms.py
Bastian Wagner 2aba1265af mail notification
2026-08-15 20:47:02 +02:00

14 lines
282 B
Python

from dataclasses import dataclass
@dataclass(frozen=True)
class UserFormData:
name: str
mywhoosh_email: str
mywhoosh_password: str
garmin_email: str
garmin_password: str
enabled: bool
notify_email_enabled: bool = False
notification_email: str = ""