mirror of
https://github.com/nikdoof/pocket-id.git
synced 2025-12-13 23:02:17 +00: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
|