forked from ebhomengo/niki
1
0
Fork 0
niki/param/admin/kind_box/get.go

11 lines
234 B
Go
Raw Normal View History

2023-12-25 17:08:19 +00:00
package adminkindboxparam
type KindBoxGetRequest struct {
2024-07-01 17:13:28 +00:00
KindBoxID uint `param:"id"`
2023-12-25 17:08:19 +00:00
}
type KindBoxGetResponse struct {
Data Data `json:"data"`
FieldErrors map[string]string `json:"field_errors,omitempty"`
2023-12-25 17:08:19 +00:00
}