forked from ebhomengo/niki
12 lines
219 B
Go
12 lines
219 B
Go
|
package userkindboxreqparam
|
||
|
|
||
|
import entity "git.gocasts.ir/ebhomengo/niki/entity"
|
||
|
|
||
|
type KindBoxReqGetAllRequest struct {
|
||
|
BenefactorID uint
|
||
|
}
|
||
|
|
||
|
type KindBoxReqGetAllResponse struct {
|
||
|
AllKindBoxReq []entity.KindBoxReq
|
||
|
}
|