forked from ebhomengo/niki
13 lines
332 B
Go
13 lines
332 B
Go
|
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"`
|
||
|
}
|