mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-25 02:38:42 +08:00
12 lines
161 B
Python
12 lines
161 B
Python
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class App(BaseModel):
|
||
|
id: int
|
||
|
name: str
|
||
|
status_code: int
|
||
|
status: str
|
||
|
port: int
|
||
|
volume: str
|
||
|
url: str
|