forked from ebhomengo/niki
14 lines
253 B
Go
14 lines
253 B
Go
|
package adminkindboxreqparam
|
||
|
|
||
|
import entity "git.gocasts.ir/ebhomengo/niki/entity"
|
||
|
|
||
|
type KindBoxReqAddRequest struct {
|
||
|
BenefactorID uint
|
||
|
TypeID uint
|
||
|
CountRequested uint
|
||
|
}
|
||
|
|
||
|
type KindBoxReqAddResponse struct {
|
||
|
KindBoxReq entity.KindBoxReq
|
||
|
}
|