You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
458 B
30 lines
458 B
package model |
|
|
|
// ArgRegionTotal arg region total |
|
type ArgRegionTotal struct { |
|
RealIP string |
|
} |
|
|
|
// ArgRegion3 arg region |
|
type ArgRegion3 struct { |
|
RegionID int32 |
|
Pn int |
|
Ps int |
|
RealIP string |
|
} |
|
|
|
// ArgRegionTag3 arg region tag |
|
type ArgRegionTag3 struct { |
|
TagID int64 |
|
RegionID int32 |
|
Pn int |
|
Ps int |
|
RealIP string |
|
} |
|
|
|
// ArgRegions3 arg regions |
|
type ArgRegions3 struct { |
|
RegionIDs []int32 |
|
Count int |
|
RealIP string |
|
}
|
|
|