Develop #22

Merged
luuvansinh merged 56 commits from develop into master 2022-09-13 02:28:19 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 21aa37507a - Show all commits

View File

@ -10,19 +10,19 @@ type ResponseLocationAddress struct {
type LocationProvince struct {
ID string `json:"id"`
Name string `json:"name"`
Code string `json:"code"`
Code int `json:"code"`
}
// LocationDistrict ...
type LocationDistrict struct {
ID string `json:"id"`
Name string `json:"name"`
Code string `json:"code"`
Code int `json:"code"`
}
// LocationWard ...
type LocationWard struct {
ID string `json:"id"`
Name string `json:"name"`
Code string `json:"code"`
Code int `json:"code"`
}