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