mirror of
https://github.com/PaiGramTeam/python-genshin-artifact.git
synced 2024-11-22 06:57:55 +00:00
8 lines
104 B
Python
8 lines
104 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class BuffInfo(BaseModel):
|
|
name: str
|
|
config: str
|
|
star: int
|