niki/param/benefactor/kind_box_req/get_all.go

12 lines
251 B
Go
Raw Normal View History

package benefactorkindboxreqparam
2023-12-25 17:08:19 +00:00
import entity "git.gocasts.ir/ebhomengo/niki/entity"
type KindBoxReqGetAllRequest struct {
BenefactorID uint
}
type KindBoxReqGetAllResponse struct {
2024-05-21 22:10:16 +00:00
AllKindBoxReq []entity.KindBoxReq `json:"all_kind_box_req"`
2023-12-25 17:08:19 +00:00
}