Shioriko/pkg/database/user_token.go

13 lines
169 B
Go
Raw Normal View History

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