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

12 lines
273 B
Go

package models
import "time"
// ExecutionSchedule an execution unit or a set of steps
type ExecutionSchedule struct {
Name string `json:"name"`
Start time.Time `json:"start"`
Stop time.Time `json:"stop"`
Reccurence string `json:"reccurence"`
}