15 lines
373 B
Go
15 lines
373 B
Go
package responses
|
|
|
|
type CreateComponentResponse struct {
|
|
ID int64 `json:"id"`
|
|
}
|
|
|
|
type UpdateComponentResponse struct {
|
|
ID int64 `json:"id"`
|
|
ComponentTypeID int64 `json:"componentTypeId"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Unit string `json:"unit"`
|
|
MinQuantity int32 `json:"minQuantity"`
|
|
}
|