11 lines
242 B
Go
11 lines
242 B
Go
package dto
|
|
|
|
import "time"
|
|
|
|
type SessionData struct {
|
|
//SessionId string `json:"session_id"`
|
|
Headers map[string]string `json:"headers"`
|
|
ExpiresAt time.Time `json:"expires_at"`
|
|
EndPoint string `json:"end_point"`
|
|
}
|