summaryrefslogtreecommitdiff
path: root/pkg/dto/authorization_request.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/dto/authorization_request.go')
-rw-r--r--pkg/dto/authorization_request.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkg/dto/authorization_request.go b/pkg/dto/authorization_request.go
new file mode 100644
index 0000000..17aa4e5
--- /dev/null
+++ b/pkg/dto/authorization_request.go
@@ -0,0 +1,10 @@
+package dto
+
+type AuthorizationRequest struct {
+ ResponseType string
+ Scope string
+ ClientId string
+ State string
+ RedirectUri string
+ Nonce string
+}