forked from ebhomengo/niki
15 lines
279 B
Go
15 lines
279 B
Go
|
package userkindboxreqparam
|
||
|
|
||
|
import entity "git.gocasts.ir/ebhomengo/niki/entity"
|
||
|
|
||
|
type KindBoxReqUpdateRequest struct {
|
||
|
BenefactorID uint
|
||
|
KindBoxReqID uint
|
||
|
TypeID uint
|
||
|
CountRequested uint
|
||
|
}
|
||
|
|
||
|
type KindBoxReqUpdateResponse struct {
|
||
|
KindBoxReq entity.KindBoxReq
|
||
|
}
|