perseus/account/user.go

11 lines
165 B
Go

package account
// User holds information about the user.
type User struct {
ID string
Username string
Password string
Hash string
Token string
}