request.go 283 B

12345678910111213
  1. package dto
  2. type RegisterRequest struct {
  3. Ip string `json:"ip"`
  4. CountryCode string `json:"countryCode"`
  5. CountryName string `json:"countryName"`
  6. City string `json:"city"`
  7. Secret string `json:"secret"`
  8. }
  9. type DetailRequest struct {
  10. Ip string `form:"ip"`
  11. }