feat: add room management functionality
This commit is contained in:
12
internal/models/responses/room_response.go
Normal file
12
internal/models/responses/room_response.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package responses
|
||||
|
||||
type CreateRoomResponse struct {
|
||||
ID int64 `json:"id"`
|
||||
}
|
||||
|
||||
type UpdateRoomResponse struct {
|
||||
ID int64 `json:"id"`
|
||||
WarehouseID int64 `json:"warehouseId"`
|
||||
Name string `json:"name"`
|
||||
Description string `json:"description"`
|
||||
}
|
||||
Reference in New Issue
Block a user