10 lines
224 B
Go
10 lines
224 B
Go
package models
|
|
|
|
type ResetPassword struct {
|
|
Account string `json:"account"`
|
|
Email string `json:"email"`
|
|
CodeHash string `json:"codeHash"`
|
|
ExpiresAt string `json:"expiresAt"`
|
|
CreatedAt string `json:"createdAt"`
|
|
}
|