This commit is contained in:
xds
2026-02-15 10:26:01 +03:00
parent 2d3da59de9
commit 97483b7030
16 changed files with 245 additions and 4 deletions

12
models/Idea.py Normal file
View File

@@ -0,0 +1,12 @@
from datetime import datetime
from typing import Optional, List
from pydantic import BaseModel, Field
class Idea(BaseModel):
id: Optional[str] = None
name: str = "New Idea"
project_id: str
created_by: str # User ID
is_deleted: bool = False
created_at: datetime = Field(default_factory=datetime.now)
updated_at: datetime = Field(default_factory=datetime.now)