forked from ebhomengo/niki
14 lines
313 B
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"`
|
|
}
|