mirror of
https://bitbucket.org/skobkin/point-api-go.git
synced 2025-01-26 02:27:33 +00:00
8 lines
142 B
Go
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"`
|
|
}
|