2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 00:39:32 +08:00
Files
panel/internal/http/request/app.go
2024-10-13 23:43:59 +08:00

16 lines
400 B
Go

package request
type App struct {
Slug string `json:"slug" form:"slug" validate:"required"`
Channel string `json:"channel" form:"channel" validate:"required"`
}
type AppSlug struct {
Slug string `json:"slug" form:"slug" validate:"required"`
}
type AppUpdateShow struct {
Slug string `json:"slug" form:"slug" validate:"required"`
Show bool `json:"show" form:"show" validate:"required"`
}