mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-24 15:19:20 +00:00
14 lines
222 B
Python
14 lines
222 B
Python
# 遗器套装
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Relic(BaseModel):
|
|
id: int
|
|
"""遗器套装ID"""
|
|
name: str
|
|
"""套装名称"""
|
|
icon: str
|
|
"""套装图标"""
|
|
affect: str
|
|
"""套装效果"""
|