request.go 316 B

1234567891011121314
  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. Vip bool `json:"vip"`
  9. }
  10. type DetailRequest struct {
  11. Ip string `form:"ip"`
  12. }