14 lines
282 B
Python
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 = ""
|