mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-30 02:36:18 +08:00
10 lines
268 B
Go
10 lines
268 B
Go
package response
|
|
|
|
type AppIgnoreUpgradeDTO struct {
|
|
ID uint `json:"ID"`
|
|
AppID uint `json:"appID"`
|
|
AppDetailID uint `json:"appDetailID"`
|
|
Scope string `json:"scope"`
|
|
Version string `json:"version"`
|
|
Name string `json:"name"`
|
|
}
|