natsio/model/staff_response.go

13 lines
239 B
Go
Raw Normal View History

2022-11-18 09:22:17 +00:00
package model
2022-11-18 10:47:26 +00:00
// ResponseListStaffInfo ...
type ResponseListStaffInfo struct {
Staffs []ResponseStaffInfo `json:"staffs"`
2022-11-18 09:22:17 +00:00
}
// ResponseStaffInfo ...
type ResponseStaffInfo struct {
ID string `json:"_id"`
Name string `json:"name"`
}