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