mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +00:00
6 lines
115 B
Python
6 lines
115 B
Python
from typing import Optional, TypedDict
|
|
|
|
|
|
class ProjectData(TypedDict):
|
|
project_id: str
|
|
name: Optional[str]
|