harbor/tests/apitests/apilib/user.go
2016-08-10 14:34:56 +08:00

13 lines
357 B
Go

package apilib
//User ...
type User struct {
UserID int32 `json:"user_id,omitempty"`
Username string `json:"username,omitempty"`
Email string `json:"email,omitempty"`
Password string `json:"password,omitempty"`
Realname string `json:"realname,omitempty"`
Comment string `json:"comment,omitempty"`
Deleted int32 `json:"deleted,omitempty"`
}