mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 09:13:49 +08:00
16 lines
318 B
Go
16 lines
318 B
Go
package request
|
|
|
|
type App struct {
|
|
Slug string `json:"slug" form:"slug"`
|
|
VersionSlug string `json:"version_slug" form:"version_slug"`
|
|
}
|
|
|
|
type AppSlug struct {
|
|
Slug string `json:"slug" form:"slug"`
|
|
}
|
|
|
|
type AppUpdateShow struct {
|
|
Slug string `json:"slug" form:"slug"`
|
|
Show bool `json:"show" form:"show"`
|
|
}
|