PamGram/modules/wiki/models/relic.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
282 B
Python
Raw Normal View History

2023-04-26 08:48:05 +00:00
# 遗器套装
2023-05-11 15:09:39 +00:00
from typing import List
2023-04-26 08:48:05 +00:00
from pydantic import BaseModel
2023-08-29 06:03:21 +00:00
class YattaRelic(BaseModel):
2023-04-26 08:48:05 +00:00
id: int
"""遗器套装ID"""
name: str
"""套装名称"""
icon: str
"""套装图标"""
2023-08-29 06:03:21 +00:00
image_list: List[str] = []
2023-05-11 15:09:39 +00:00
"""套装子图"""
2023-08-29 06:03:21 +00:00
route: str