mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-24 18:30:23 +08:00
15 lines
339 B
Python
15 lines
339 B
Python
from pydantic import BaseModel
|
|
from api.model.config import Config
|
|
from api.model.status_reason import StatusReason
|
|
|
|
class App(BaseModel):
|
|
app_id: str
|
|
app_name: str
|
|
customer_name: str
|
|
trade_mark: str
|
|
status: str
|
|
status_reason: StatusReason = None
|
|
official_app: bool
|
|
image_url: str
|
|
config: Config = None
|