mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 12:30:41 +01:00
9 lines
244 B
Go
9 lines
244 B
Go
|
package db
|
||
|
|
||
|
type Schedule struct {
|
||
|
ID int `db:"id" json:"id"`
|
||
|
ProjectID int `db:"project_id" json:"project_id"`
|
||
|
TemplateID int `db:"template_id" json:"template_id"`
|
||
|
CronFormat string `db:"cron_format" json:"cron_format"`
|
||
|
}
|