mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-08 17:08:35 +08:00
add Bangumi
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
from typing import Optional
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class BangumiPerson(BaseModel):
|
||||
id: Optional[int] = None
|
||||
name: Optional[str] = None
|
||||
type: Optional[int] = 1
|
||||
career: Optional[list] = []
|
||||
images: Optional[dict] = {}
|
||||
relation: Optional[str] = None
|
||||
Reference in New Issue
Block a user