mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-12-18 21:38:57 +08:00
7 lines
222 B
Go
7 lines
222 B
Go
package request
|
|
|
|
type AppIgnoreUpgradeReq struct {
|
|
AppID uint `json:"appID" validate:"required"`
|
|
AppDetailID uint `json:"appDetailID"`
|
|
Scope string `json:"scope" validate:"required,oneof=all version"`
|
|
}
|