1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-20 13:49:40 +02:00
mealie/tests/utils/fixture_schemas.py

18 lines
293 B
Python
Raw Normal View History

from dataclasses import dataclass
from typing import Any
from uuid import UUID
@dataclass
class TestUser:
email: str
user_id: UUID
username: str
password: str
_group_id: UUID
token: Any
@property
def group_id(self) -> str:
return str(self._group_id)