Files
diun/internal/model/watch.go

9 lines
255 B
Go

package model
// Watch holds data necessary for watch configuration
type Watch struct {
Workers int `yaml:"workers,omitempty"`
Schedule string `yaml:"schedule,omitempty"`
FirstCheckNotif bool `yaml:"first_check_notif,omitempty"`
}