Files
warehouse-management-BE/internal/models/responses/room_response.go
2026-05-08 14:58:59 +07:00

13 lines
260 B
Go

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"`
}