8 lines
146 B
Go
8 lines
146 B
Go
|
|
package response
|
||
|
|
|
||
|
|
type CitiesResponse struct {
|
||
|
|
ID uint `json:"id"`
|
||
|
|
CityName string `json:"cityName"`
|
||
|
|
ProvId int `json:"provId"`
|
||
|
|
}
|