13 lines
266 B
Go
13 lines
266 B
Go
package responses
|
|
|
|
type CreateWarehouseResponse struct {
|
|
ID int64 `json:"id"`
|
|
}
|
|
|
|
type UpdateWarehouseResponse struct {
|
|
ID int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Address string `json:"address"`
|
|
}
|