14 lines
302 B
Go
14 lines
302 B
Go
package responses
|
|
|
|
type CreateShelveResponse struct {
|
|
ID int64 `json:"id"`
|
|
}
|
|
|
|
type UpdateShelveResponse struct {
|
|
ID int64 `json:"id"`
|
|
CabinetID int64 `json:"cabinetId"`
|
|
Name string `json:"name"`
|
|
LevelIndex int32 `json:"levelIndex"`
|
|
Description string `json:"description"`
|
|
}
|