deprecated-oc-search/models/workflow/workflowstep.go
2023-08-26 22:04:56 +02:00

11 lines
269 B
Go

package models
// WorkflowStep an execution unit or a set of steps
type WorkflowStep struct {
Name string `json:"name"`
Container string `json:"container"`
Input string `json:"input"`
Output string `json:"output"`
Location string `json:"location"`
}