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