package request
|
|
type AddClientStatus struct {
|
Name string `json:"name" binding:"required"`
|
}
|
|
type UpdateClientStatus struct {
|
Id int `json:"id" binding:"required"`
|
Name string `json:"name" binding:"required"`
|
}
|
|
type UpdateClientStatuses struct {
|
ClientStatuses []UpdateClientStatus `json:"client_statuses"`
|
}
|