mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01:00
12 lines
349 B
Go
12 lines
349 B
Go
package HarborAPI
|
|
|
|
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"`
|
|
}
|