|
package structs
|
|
|
|
// TABLE ws_sessions
|
|
type UserWebSocketSession struct {
|
|
Id string
|
|
UserId string
|
|
UserAgent string
|
|
Ip string
|
|
LastUsed int64
|
|
CreatedAt int64
|
|
}
|
|
|
|
// swagger:model UserWebSocketSessionsResponse
|
|
type WebSocketSessionsResponse struct {
|
|
WsSessions []UserWebSocketSession
|
|
}
|