mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
20 lines
226 B
Go
20 lines
226 B
Go
package model
|
|
|
|
// IPListDetail .
|
|
type IPListDetail struct {
|
|
IP string
|
|
Num int64
|
|
}
|
|
|
|
// UIDListDetail .
|
|
type UIDListDetail struct {
|
|
UID string
|
|
Num int64
|
|
}
|
|
|
|
// ListDetail .
|
|
type ListDetail struct {
|
|
IP string
|
|
UID string
|
|
}
|