13 lines
370 B
Go
13 lines
370 B
Go
package models
|
|
|
|
type PendingUser struct {
|
|
Account string `json:"account"`
|
|
PasswordHash string `json:"passwordHash"`
|
|
Username string `json:"username"`
|
|
Email string `json:"email"`
|
|
CodeHash string `json:"codeHash"`
|
|
ExpiresAt string `json:"expiresAt"`
|
|
CreatedAt string `json:"createdAt"`
|
|
InviteCode string `json:"inviteCode,omitempty"`
|
|
}
|