mirror of
https://github.com/PaiGramTeam/python-genshin-artifact.git
synced 2025-02-04 01:15:31 +00:00
8 lines
143 B
Python
8 lines
143 B
Python
from typing import Union
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class SkillInfo(BaseModel):
|
|
index: int
|
|
config: Union[str, dict] = "NoConfig"
|