forked from ebhomengo/niki
14 lines
298 B
Go
14 lines
298 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
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
|
}
|