13 lines
261 B
Go
13 lines
261 B
Go
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"`
|
|
}
|