mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 06:12:53 +08:00
14 lines
192 B
Python
14 lines
192 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class Item(BaseModel):
|
|
plugin_name: str
|
|
sta: int
|
|
|
|
|
|
class PluginList(BaseModel):
|
|
plugin_type: str
|
|
icon: str
|
|
logo: str
|
|
items: list[Item]
|