forked from ebhomengo/niki
13 lines
368 B
Go
13 lines
368 B
Go
package adminbenefactoreparam
|
|
|
|
import "git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
type BenefactorUpdateStatusRequest struct {
|
|
ID uint `json:"-" param:"id" example:"1"`
|
|
Status entity.BenefactorStatus `json:"status" example:"inactive"`
|
|
}
|
|
|
|
type BenefactorUpdateStatusResponse struct {
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
|
}
|