forked from ebhomengo/niki
18 lines
502 B
Go
18 lines
502 B
Go
package benefactorkindboxreqparam
|
|
|
|
import (
|
|
entity "git.gocasts.ir/ebhomengo/niki/entity"
|
|
)
|
|
|
|
type KindBoxReqAddRequest struct {
|
|
BenefactorID uint `json:"benefactor_id"`
|
|
TypeID entity.KindBoxType `json:"type_id"`
|
|
AddressID uint `json:"address_id"`
|
|
ReferDate string `json:"refer_date"`
|
|
CountRequested uint `json:"count_requested"`
|
|
}
|
|
|
|
type KindBoxReqAddResponse struct {
|
|
KindBoxReq entity.KindBoxReq `json:"kind_box_req"`
|
|
}
|