natsio/model/staff_response.go

13 lines
235 B
Go
Raw Normal View History

2022-10-07 08:09:28 +00:00
package model
// ResponseListStaffInfo ...
type ResponseListStaffInfo struct {
List []ResponseStaffInfo `json:"list"`
}
// ResponseStaffInfo ...
type ResponseStaffInfo struct {
ID string `json:"_id"`
Name string `json:"name"`
}