|
package request
|
|
type AddQuotationStatus struct {
|
Name string ` json:"name" binding:"required"`
|
}
|
|
type UpdateQuotationStatus struct {
|
Id int `json:"id" binding:"required"`
|
Name string `json:"name" binding:"required"`
|
}
|
|
type UpdateQuotationStatuss struct {
|
QuotationStatuss []*UpdateQuotationStatus `json:"quotation_status" binding:"required"`
|
}
|