mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
13 lines
283 B
Go
13 lines
283 B
Go
|
package dtos
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type UserToken struct {
|
||
|
Id int64 `json:"id"`
|
||
|
IsActive bool `json:"isActive"`
|
||
|
ClientIp string `json:"clientIp"`
|
||
|
UserAgent string `json:"userAgent"`
|
||
|
CreatedAt time.Time `json:"createdAt"`
|
||
|
SeenAt time.Time `json:"seenAt"`
|
||
|
}
|