point-api-go/user.go
2016-03-29 10:50:49 +03:00

8 lines
142 B
Go

package point
// User represents the user object in API response
type User struct {
Id int `json:"id"`
Login string `json:"login"`
}