mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
15 lines
293 B
Go
15 lines
293 B
Go
package system_apikey_dto
|
|
|
|
type Create struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
Value string `json:"value"`
|
|
Expired int64 `json:"expired"`
|
|
}
|
|
|
|
type Update struct {
|
|
Name *string `json:"name"`
|
|
Value *string `json:"value"`
|
|
Expired *int64 `json:"expired"`
|
|
}
|