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

14 lines
273 B
Go
Raw Normal View History

package benefactorkindboxparam
import entity "git.gocasts.ir/ebhomengo/niki/entity"
type KindBoxGetRequest struct {
BenefactorID uint
KindBoxID uint
}
type KindBoxGetResponse struct {
entity.KindBox
FieldErrors map[string]string `json:"field_errors,omitempty"`
}