mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-03-20 12:08:09 +08:00
9 lines
141 B
Python
9 lines
141 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Response(BaseModel):
|
|
success: bool
|
|
message: Optional[str] = None
|