Files
2026-05-08 15:26:31 +07:00

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