forked from ebhomengo/niki
12 lines
172 B
Go
12 lines
172 B
Go
|
package param
|
||
|
|
||
|
import "git.gocasts.ir/ebhomengo/niki/entity"
|
||
|
|
||
|
type KindBoxGetByIdRequest struct {
|
||
|
kindBoxID uint
|
||
|
}
|
||
|
|
||
|
type KindBoxGetByIdResponse struct {
|
||
|
entity.KindBox
|
||
|
}
|