9 lines
256 B
Go
9 lines
256 B
Go
package models
|
|
|
|
// Coordinates represents WGS84 geographical coordiantes
|
|
type Workflow struct {
|
|
Name string `json:"name"`
|
|
PlannedSchedule ExecutionSchedule `json:"plannedschedule`
|
|
Steps []WorkflowStep `json:"steps"`
|
|
}
|