mirror of
https://github.com/a-mayb3/Kanban_clone_backend.git
synced 2026-03-21 10:05:38 +01:00
9 lines
193 B
Python
9 lines
193 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
|