8 lines
109 B
Python
8 lines
109 B
Python
|
from dataclasses import dataclass
|
||
|
|
||
|
|
||
|
@dataclass(frozen=True)
|
||
|
class UserResponse:
|
||
|
name: str
|
||
|
email: str
|