mirror of
https://github.com/PaiGramTeam/python-genshin-artifact.git
synced 2024-11-17 13:22:16 +00:00
11 lines
170 B
Python
11 lines
170 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class DamageResult(BaseModel):
|
|
critical: float
|
|
non_critical: float
|
|
expectation: float
|
|
|
|
is_heal: bool
|
|
is_shield: bool
|