mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-12-04 15:21:05 +01:00
9 lines
228 B
Go
9 lines
228 B
Go
package models
|
|
|
|
type Environment struct {
|
|
ID int `db:"id" json:"id"`
|
|
ProjectID int `db:"project_id" json:"project_id"`
|
|
Password string `db:"password" json:"password"`
|
|
JSON string `db:"json" json:"json"`
|
|
}
|