mirror of
https://github.com/a-mayb3/Kanban_clone_backend.git
synced 2026-03-21 18:15:37 +01:00
20 lines
480 B
Python
20 lines
480 B
Python
from pydantic import BaseModel, ConfigDict
|
|
from typing import List, Optional
|
|
|
|
from schemas.tasks import TaskBase
|
|
from schemas.users import UserBase
|
|
|
|
class ProjectBase(BaseModel):
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
id: int
|
|
name: str
|
|
description: str
|
|
tasks: List[TaskBase]
|
|
users: List[UserBase]
|
|
|
|
class ProjectCreate(BaseModel):
|
|
name: str
|
|
description: Optional[str] = None
|
|
tasks: List[TaskBase] = []
|
|
user_ids: List[int] = []
|