Files
old-backend/models/password_tokens.go
2023-11-01 15:14:38 +01:00

19 lines
368 B
Go

package models
type PasswordTokens struct {
BaseModel
UserID uint `json:"username"`
Token string `json:"token"`
ExpiryDate string `json:"expiryDate"`
}
func (PasswordTokens) Update() (bool, error) {
return false, nil
}
func (PasswordTokens) Create() (bool, error) {
return false, nil
}
func (PasswordTokens) Delete() (bool, error) {
return false, nil
}