Added DTO for Access action

This commit is contained in:
PB
2025-11-15 19:59:04 +01:00
parent 86341c21e1
commit cc2ba15c37

9
identity/dto/access.go Normal file
View File

@@ -0,0 +1,9 @@
package identity
type CheckAccessRequestDTO struct {
URL string `query:"url"`
Service string `query:"srv"`
}
type CheckAccessResponseDTO struct {
}