mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-25 02:38:42 +08:00
15 lines
327 B
Python
15 lines
327 B
Python
from pydantic import BaseModel
|
|
from running_info import RunningInfo
|
|
from status_reason import StatusReason
|
|
|
|
class App(BaseModel):
|
|
app_id: str
|
|
app_name: str
|
|
customer_name: str
|
|
trade_mark: str
|
|
status: str
|
|
status_reason: StatusReason
|
|
official_app: bool
|
|
image_url: str
|
|
running_info: RunningInfo
|