9 lines
231 B
Go
9 lines
231 B
Go
package form
|
|
|
|
// UserCreate represents a User with a new password.
|
|
type UserCreate struct {
|
|
UserName string `json:"username"`
|
|
FullName string `json:"fullname"`
|
|
Email string `json:"email"`
|
|
Password string `json:"password"`
|
|
}
|