8 lines
148 B
Go
8 lines
148 B
Go
|
|
package response
|
||
|
|
|
||
|
|
type CitiesResponse struct {
|
||
|
|
ID uint `json:"id"`
|
||
|
|
CityName string `json:"city_name"`
|
||
|
|
ProvId int `json:"prov_id"`
|
||
|
|
}
|