mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
16 lines
226 B
Go
16 lines
226 B
Go
package v1
|
|
|
|
import (
|
|
"go-common/app/interface/bbq/app-bbq/model"
|
|
)
|
|
|
|
// LocationRequest .
|
|
type LocationRequest struct {
|
|
PID int32 `form:"pid"`
|
|
}
|
|
|
|
// LocationResponse .
|
|
type LocationResponse struct {
|
|
List []*model.Location
|
|
}
|