fin-check-api/db/session.go

11 lines
139 B
Go
Raw Permalink Normal View History

2024-11-06 18:47:12 +01:00
package db
import "time"
type Session struct {
ID string `gorm:"primaryKey"`
UserID uint
User *User
ExpireAt time.Time
}