photoprism/internal/form/user.go

10 lines
231 B
Go
Raw Normal View History

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"`
}