mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-05 16:39:50 +00:00
12 lines
281 B
Go
12 lines
281 B
Go
package model
|
|
|
|
// Team represents a team or organization in the remote version control system.
|
|
//
|
|
// swagger:model user
|
|
type Team struct {
|
|
// Login is the username for this team.
|
|
Login string `json:"login"`
|
|
|
|
// the avatar url for this team.
|
|
Avatar string `json:"avatar_url"`
|
|
}
|