mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-10 07:12:59 +03:00
12 lines
241 B
Go
12 lines
241 B
Go
package dto
|
|
|
|
type CustomClaimDto struct {
|
|
Key string `json:"key"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
type CustomClaimCreateDto struct {
|
|
Key string `json:"key" binding:"required,claimKey"`
|
|
Value string `json:"value" binding:"required"`
|
|
}
|