mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-09 22:52:58 +03:00
12 lines
256 B
Go
12 lines
256 B
Go
package dto
|
|
|
|
type CustomClaimDto struct {
|
|
Key string `json:"key"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
type CustomClaimCreateDto struct {
|
|
Key string `json:"key" binding:"required" unorm:"nfc"`
|
|
Value string `json:"value" binding:"required" unorm:"nfc"`
|
|
}
|