mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-17 01:11:38 +03:00
9 lines
199 B
Go
9 lines
199 B
Go
|
|
package dto
|
||
|
|
|
||
|
|
type CustomClaimDto struct {
|
||
|
|
Key string `json:"key" binding:"required,max=20"`
|
||
|
|
Value string `json:"value" binding:"required,max=10000"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type CustomClaimCreateDto = CustomClaimDto
|