mirror of
https://github.com/a-mayb3/Kanban_clone_backend.git
synced 2026-03-21 10:05:38 +01:00
11 lines
No EOL
260 B
Python
11 lines
No EOL
260 B
Python
from typing import List
|
|
|
|
from pydantic import ConfigDict
|
|
from schemas.projects import ProjectFull
|
|
from schemas.users import UserBase
|
|
|
|
class ProjectUserBase(UserBase):
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
projects: List[ProjectFull]
|
|
|