forked from ebhomengo/niki
18 lines
353 B
Go
18 lines
353 B
Go
package adminkindboxparam
|
|
|
|
import entity "git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
type KindBoxUpdateRequest struct {
|
|
BenefactorID uint
|
|
KindBoxID uint
|
|
Amount uint
|
|
ReceiverAgentID uint
|
|
SenderAgentID uint
|
|
SerialNumber string
|
|
Status entity.KindBoxStatus
|
|
}
|
|
|
|
type KindBoxUpdateResponse struct {
|
|
KindBox entity.KindBox
|
|
}
|