1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-09 00:19:17 +00:00
Files
pocket-id/backend/internal/dto/custom_claim_dto.go
2025-03-16 14:11:33 +01:00

12 lines
232 B
Go

package dto
type CustomClaimDto struct {
Key string `json:"key"`
Value string `json:"value"`
}
type CustomClaimCreateDto struct {
Key string `json:"key" binding:"required"`
Value string `json:"value" binding:"required"`
}