9 lines
176 B
Go
9 lines
176 B
Go
|
package model
|
||
|
|
||
|
// LocationRequestPayload ...
|
||
|
type LocationRequestPayload struct {
|
||
|
Province int `json:"province"`
|
||
|
District int `json:"district"`
|
||
|
Ward int `json:"ward"`
|
||
|
}
|