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

12 lines
272 B
Go
Raw Normal View History

package benefactorkindboxparam
type KindBoxGetRequest struct {
BenefactorID uint `json:"-"`
KindBoxID uint `param:"id"`
}
type KindBoxGetResponse struct {
Data Data `json:"data"`
FieldErrors map[string]string `json:"field_errors,omitempty"`
}