mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-23 16:00:52 +00:00
11 lines
268 B
Go
11 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"`
|
|
}
|