forked from ebhomengo/niki
16 lines
287 B
Go
16 lines
287 B
Go
|
package adminkindboxparam
|
||
|
|
||
|
import entity "git.gocasts.ir/ebhomengo/niki/entity"
|
||
|
|
||
|
type KindBoxUpdateRequest struct {
|
||
|
TotalAmount uint
|
||
|
ReceiverID uint
|
||
|
SenderID uint
|
||
|
SerialNumber string
|
||
|
Status KindBoxStatus
|
||
|
}
|
||
|
|
||
|
type KindBoxUpdateResponse struct {
|
||
|
KindBox entity.KindBox
|
||
|
}
|