Shioriko/pkg/database/user_token.go

13 lines
169 B
Go
Raw Normal View History

2021-05-09 15:07:23 +00:00
package database
import "time"
type UserToken struct {
ID uint
UserID string
User User
Token string
CreatedAt time.Time
UpdatedAt time.Time
}