mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-11-09 19:20:56 +08:00
16 lines
321 B
Go
16 lines
321 B
Go
package model
|
|
|
|
type AppLauncher struct {
|
|
BaseModel
|
|
Key string `json:"key"`
|
|
}
|
|
|
|
type QuickJump struct {
|
|
BaseModel
|
|
Name string `json:"name"`
|
|
Title string `json:"title"`
|
|
Detail string `json:"detail"`
|
|
Recommend int `json:"recommend"`
|
|
IsShow bool `json:"isShow"`
|
|
Router string `json:"router"`
|
|
}
|