10 lines
233 B
Go
10 lines
233 B
Go
|
|
package response
|
||
|
|
|
||
|
|
type ProvincesResponse struct {
|
||
|
|
ID uint `json:"id"`
|
||
|
|
ProvName string `json:"prov_name"`
|
||
|
|
LocationId int `json:"location_id"`
|
||
|
|
Status int `json:"status"`
|
||
|
|
Timezone string `json:"timezone"`
|
||
|
|
}
|