1Panel/backend/app/dto/response/runtime.go

10 lines
195 B
Go
Raw Normal View History

2023-03-29 14:58:28 +08:00
package response
import "github.com/1Panel-dev/1Panel/backend/app/model"
type RuntimeRes struct {
model.Runtime
2023-04-02 16:54:00 +08:00
AppParams []AppParam `json:"appParams"`
AppID uint `json:"appId"`
2023-03-29 14:58:28 +08:00
}