user_token.go 283 B

123456789101112
  1. package dtos
  2. import "time"
  3. type UserToken struct {
  4. Id int64 `json:"id"`
  5. IsActive bool `json:"isActive"`
  6. ClientIp string `json:"clientIp"`
  7. UserAgent string `json:"userAgent"`
  8. CreatedAt time.Time `json:"createdAt"`
  9. SeenAt time.Time `json:"seenAt"`
  10. }