mirror of
https://github.com/Receipt-Wrangler/receipt-wrangler-api.git
synced 2026-01-25 04:38:47 -06:00
12 lines
234 B
Go
12 lines
234 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type RefreshToken struct {
|
|
BaseModel
|
|
UserId uint `gorm:"not null"`
|
|
Token string `gorm:"not null"`
|
|
IsUsed bool `gorm:"default:false"`
|
|
ExpiresAt time.Time `json:"expiryDate"`
|
|
}
|