woodpecker/model/team.go
2016-04-29 12:39:56 -07:00

13 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"`
}