mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
15 lines
367 B
Go
15 lines
367 B
Go
package db
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Project is the top level structure in Semaphore
|
|
type Project struct {
|
|
ID int `db:"id" json:"id"`
|
|
Name string `db:"name" json:"name" binding:"required"`
|
|
Created time.Time `db:"created" json:"created"`
|
|
Alert bool `db:"alert" json:"alert"`
|
|
AlertChat string `db:"alert_chat" json:"alert_chat"`
|
|
}
|