mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -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"`
|
|
}
|