mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-03-31 01:11:48 +08:00
10 lines
171 B
Python
10 lines
171 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Response(BaseModel):
|
|
success: bool
|
|
message: Optional[str] = None
|
|
data: Optional[dict] = {}
|