forked from ebhomengo/niki
9 lines
120 B
Go
9 lines
120 B
Go
|
package addressparam
|
||
|
|
||
|
type CityExistByIDRequest struct {
|
||
|
ID uint
|
||
|
}
|
||
|
type CityExistByIDResponse struct {
|
||
|
Existed bool
|
||
|
}
|