mirror of
https://github.com/PaiGramTeam/HonkaiStarRailWikiDataParser.git
synced 2025-01-31 02:49:17 +00:00
12 lines
185 B
Python
12 lines
185 B
Python
# 遗器套装
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Relic(BaseModel):
|
|
id: int
|
|
"""遗器套装ID"""
|
|
name: str
|
|
"""套装名称"""
|
|
affect: str
|
|
"""套装效果"""
|