forked from ebhomengo/niki
20 lines
370 B
Go
20 lines
370 B
Go
package adminkindboxparam
|
|
|
|
import (
|
|
entity "git.gocasts.ir/ebhomengo/niki/entity"
|
|
"time"
|
|
)
|
|
|
|
type AddKindBoxRequest struct {
|
|
KindBoxReqID uint
|
|
BenefactorID uint
|
|
Type entity.KindBoxType
|
|
DeliverReferDate time.Time
|
|
DeliverAddressID uint
|
|
SenderAgentID uint
|
|
DeliveredAt time.Time
|
|
CountAccepted uint
|
|
}
|
|
|
|
type AddKindBoxResponse struct{}
|