8 lines
143 B
Go
8 lines
143 B
Go
|
|
package response
|
||
|
|
|
||
|
|
type DistrictsResponse struct {
|
||
|
|
ID uint `json:"id"`
|
||
|
|
DisNam string `json:"dis_nam"`
|
||
|
|
CityId int `json:"city_id"`
|
||
|
|
}
|