mirror of
https://github.com/Damillora/Shioriko.git
synced 2024-11-01 12:37:33 +00:00
13 lines
169 B
Go
13 lines
169 B
Go
|
package database
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type UserToken struct {
|
||
|
ID uint
|
||
|
UserID string
|
||
|
User User
|
||
|
Token string
|
||
|
CreatedAt time.Time
|
||
|
UpdatedAt time.Time
|
||
|
}
|