All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
22 lines
512 B
Go
22 lines
512 B
Go
package dto
|
|
|
|
type CreateModaRequest struct {
|
|
Name string `json:"name" binding:"required,min=2"`
|
|
}
|
|
|
|
type CreateModaResponse struct {
|
|
ID string `json:"id"`
|
|
Name *string `json:"name"`
|
|
MerchantID *string `json:"merchant_id"`
|
|
}
|
|
|
|
type ModaFilterAllRequest struct {
|
|
ID string `json:"id" form:"id"`
|
|
Name string `json:"name" form:"name"`
|
|
MerchantID string `json:"merchant_id" form:"merchant_id"`
|
|
}
|
|
|
|
type UpdateModaRequest struct {
|
|
Name string `json:"name" binding:"required,min=2"`
|
|
}
|