mirror of
https://github.com/a-mayb3/Kanban_clone_backend.git
synced 2026-03-21 10:05:38 +01:00
14 lines
No EOL
303 B
Python
14 lines
No EOL
303 B
Python
from pydantic import BaseModel, ConfigDict
|
|
from typing import List
|
|
|
|
class UserBase(BaseModel):
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
id: int
|
|
name: str
|
|
email: str
|
|
|
|
class UserList(BaseModel):
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
users: List[UserBase] |