natsio/model/staff_response.go

13 lines
239 B
Go
Raw Normal View History

2022-11-22 03:04:40 +00:00
package model
// ResponseListStaffInfo ...
type ResponseListStaffInfo struct {
Staffs []ResponseStaffInfo `json:"staffs"`
}
// ResponseStaffInfo ...
type ResponseStaffInfo struct {
ID string `json:"_id"`
Name string `json:"name"`
}