10 lines
157 B
Python
10 lines
157 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class Tree(BaseModel):
|
|
project_id: int
|
|
space_id: int = None
|
|
folder_id: int = None
|
|
dashboard_id: int = None
|
|
|