18 lines
306 B
Go
18 lines
306 B
Go
package rest
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Session struct {
|
|
Base
|
|
UserUuid string `json:"userUuid"`
|
|
Ip string `json:"ip"`
|
|
ExpireTime time.Time `json:"expireTime"`
|
|
}
|
|
|
|
// set User's table name to be `profiles`
|
|
func (Session) TableName() string {
|
|
return TABLE_PREFIX + "session"
|
|
}
|