You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
566 B
16 lines
566 B
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"`
|
|
}
|
|
|