forked from ebhomengo/niki
13 lines
235 B
Go
13 lines
235 B
Go
|
package adminkindboxreqparam
|
||
|
|
||
|
import "git.gocasts.ir/ebhomengo/niki/entity"
|
||
|
|
||
|
type DeliveryAwaitingGetRequest struct {
|
||
|
KindBoxReqID uint `param:"id"`
|
||
|
AgentID uint
|
||
|
}
|
||
|
|
||
|
type DeliveryAwaitingGetResponse struct {
|
||
|
entity.KindBoxReq
|
||
|
}
|