forked from ebhomengo/niki
1
0
Fork 0
niki/param/admin/agent/get_all.go

13 lines
332 B
Go
Raw Normal View History

package adminagentparam
type GetAllAgentResponse struct {
Agents []Agent `json:"agents"`
}
type Agent struct {
ID uint `json:"id" example:"1"`
FirstName string `json:"first_name" example:"John"`
LastName string `json:"last_name" example:"Doe"`
PhoneNumber string `json:"phone_number" example:"09123456789"`
}