8 lines
141 B
Go
8 lines
141 B
Go
|
|
package response
|
||
|
|
|
||
|
|
type DistrictsResponse struct {
|
||
|
|
ID uint `json:"id"`
|
||
|
|
DisNam string `json:"disNam"`
|
||
|
|
CityId int `json:"cityId"`
|
||
|
|
}
|