mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 20:58:14 -05:00
11 lines
190 B
Go
11 lines
190 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type ApiToken struct {
|
|
Common
|
|
UserId uint64 `json:"user_id"`
|
|
Token string `json:"token"`
|
|
TokenExpired time.Time `json:"token_expired"`
|
|
}
|