17 lines
365 B
Go
17 lines
365 B
Go
package other
|
|
|
|
type Screen interface{}
|
|
|
|
type ScreenTask struct {
|
|
Id int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Status string `json:"status"`
|
|
Strategy string `json:"strategy"`
|
|
SynergyStatus string `json:"synergyStatus"`
|
|
ClusterName string `json:"clusterName"`
|
|
}
|
|
|
|
type ScreenTaskResponse struct {
|
|
screenTasks []ScreenTask
|
|
}
|