mirror of https://github.com/grafana/grafana.git
17 lines
566 B
Go
17 lines
566 B
Go
package dtos
|
|
|
|
import "time"
|
|
|
|
type UserToken struct {
|
|
Id int64 `json:"id"`
|
|
IsActive bool `json:"isActive"`
|
|
ClientIp string `json:"clientIp"`
|
|
Device string `json:"device"`
|
|
OperatingSystem string `json:"os"`
|
|
OperatingSystemVersion string `json:"osVersion"`
|
|
Browser string `json:"browser"`
|
|
BrowserVersion string `json:"browserVersion"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
SeenAt time.Time `json:"seenAt"`
|
|
}
|