mirror of
https://github.com/PaiGramTeam/python-genshin-artifact.git
synced 2024-11-17 13:22:16 +00:00
14 lines
246 B
Python
14 lines
246 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class EnemyInfo(BaseModel):
|
|
level: int
|
|
electro_res: float
|
|
pyro_res: float
|
|
hydro_res: float
|
|
cryo_res: float
|
|
geo_res: float
|
|
anemo_res: float
|
|
dendro_res: float
|
|
physical_res: float
|