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

14 lines
313 B
Go

package benefactorkindboxreqparam
import entity "git.gocasts.ir/ebhomengo/niki/entity"
type KindBoxReqGetRequest struct {
BenefactorID uint
KindBoxReqID uint
}
type KindBoxReqGetResponse struct {
entity.KindBoxReq `json:"kind_box_req"`
FieldErrors map[string]string `json:"field_errors,omitempty"`
}