python-genshin-artifact/python_genshin_artifact/models/artifact.py

13 lines
227 B
Python
Raw Normal View History

2023-05-14 04:29:29 +00:00
from typing import List, Tuple
from pydantic import BaseModel
class ArtifactInfo(BaseModel):
set_name: str
slot: str
level: int
sub_stats: List[Tuple[str, float]]
main_stat: Tuple[str, float]
id: int