10 lines
154 B
Python
10 lines
154 B
Python
|
from dataclasses import dataclass
|
||
|
from uuid import UUID
|
||
|
|
||
|
|
||
|
@dataclass(frozen=True)
|
||
|
class AuthenticationResponse:
|
||
|
id: UUID
|
||
|
name: str
|
||
|
email: str
|