2025-10-15 10:43:58 -04:00

10 lines
178 B
Go

package dto
import "time"
type SessionData struct {
SessionId string `json:"session_id"`
ExpiresAt time.Time `json:"expires_at"`
EndPoint string `json:"end_point"`
}