PamGram/modules/wiki/models/relic.py

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

20 lines
330 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
class Relic(BaseModel):
id: int
"""遗器套装ID"""
2023-05-11 15:09:39 +00:00
bbs_id: int
"""WIKI ID"""
2023-04-26 08:48:05 +00:00
name: str
"""套装名称"""
icon: str
"""套装图标"""
affect: str
"""套装效果"""
2023-05-11 15:09:39 +00:00
image_list: List[str]
"""套装子图"""