mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 12:30:41 +01:00
8 lines
184 B
Go
8 lines
184 B
Go
|
package models
|
||
|
|
||
|
type ProjectUser struct {
|
||
|
ProjectID int `db:"project_id" json:"project_id"`
|
||
|
UserID int `db:"user_id" json:"user_id"`
|
||
|
Admin bool `db:"admin" json:"admin"`
|
||
|
}
|