2026-05-20 10:50:30 +00:00

10 lines
190 B
Python

from typing import Optional
from typing_extensions import TypedDict
class AppInfo(TypedDict):
name: str
partner_id: Optional[str]
url: Optional[str]
version: Optional[str]