13 lines
239 B
Go
13 lines
239 B
Go
|
package model
|
||
|
|
||
|
// ResponseListStaffInfo ...
|
||
|
type ResponseListStaffInfo struct {
|
||
|
Staffs []ResponseStaffInfo `json:"staffs"`
|
||
|
}
|
||
|
|
||
|
// ResponseStaffInfo ...
|
||
|
type ResponseStaffInfo struct {
|
||
|
ID string `json:"_id"`
|
||
|
Name string `json:"name"`
|
||
|
}
|