package request
|
|
type AddClientType struct {
|
Name string `json:"name" binding:"required"`
|
}
|
|
type UpdateClientType struct {
|
Id int `json:"id" binding:"required"`
|
Name string `json:"name" binding:"required"`
|
}
|
|
type UpdateClientTypes struct {
|
ClientTypes []*UpdateClientType `json:"client_types" binding:"required"`
|
}
|