forked from ebhomengo/niki
14 lines
234 B
Go
14 lines
234 B
Go
|
package adminkindboxparam
|
||
|
|
||
|
import entity "git.gocasts.ir/ebhomengo/niki/entity"
|
||
|
|
||
|
type KindBoxAddRequest struct {
|
||
|
KindBoxReqID uint
|
||
|
SenderID uint
|
||
|
SerialNumber string
|
||
|
}
|
||
|
|
||
|
type KindBoxAddResponse struct {
|
||
|
KindBox entity.KindBox
|
||
|
}
|