refactor-location #134

Closed
trunglam wants to merge 270 commits from refactor-location into master
1 changed files with 12 additions and 9 deletions
Showing only changes of commit 29b2b861ff - Show all commits

View File

@ -17,6 +17,7 @@ type (
ProvinceRequestCondition struct {
Code int `json:"code"`
Codes []int `json:"codes"`
Slug string `json:"slug"`
}
// DistrictRequestPayload ...
@ -29,6 +30,7 @@ type (
Code int `json:"code"`
Codes []int `json:"codes"`
ProvinceCode int `json:"provinceCode"`
Slug string `json:"slug"`
}
// WardRequestPayload ...
@ -42,5 +44,6 @@ type (
Codes []int `json:"codes"`
DistrictCode int `json:"districtCode"`
ProvinceCode int `json:"provinceCode"`
Slug string `json:"slug"`
}
)