lgtm/model/team.go

13 строки
256 B
Go
Исходник Обычный вид История

2016-04-19 07:22:23 +03:00
package model
2016-11-15 11:51:11 +03:00
// Team represents a team from the the remote API.
2016-04-19 07:22:23 +03:00
type Team struct {
Login string `json:"login"`
Avatar string `json:"avatar"`
}
2016-11-15 11:51:11 +03:00
// Member represents a member from the the remote API.
2016-04-19 07:22:23 +03:00
type Member struct {
Login string `json:"login"`
}