12 lines
273 B
Go
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"`
|
||
|
}
|