deprecated-oc-search/models/workflow/workflow.go

9 lines
256 B
Go
Raw Normal View History

2023-08-26 22:04:56 +02:00
package models
// Coordinates represents WGS84 geographical coordiantes
type Workflow struct {
Name string `json:"name"`
PlannedSchedule ExecutionSchedule `json:"plannedschedule`
Steps []WorkflowStep `json:"steps"`
}