mirror of
https://github.com/PaiGramTeam/python-genshin-artifact.git
synced 2024-11-17 13:22:16 +00:00
13 lines
227 B
Python
13 lines
227 B
Python
|
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
|